umbra/projs/shadow/shadow-engine/shadow-assets/test/Catch2Test.cpp

6 lines
125 B
C++

#define CATCH_CONFIG_MAIN
#include "catch2/catch.hpp"
TEST_CASE("15 is less than 20", "[numbers]") {
REQUIRE(15 < 20);
}