umbra/projs/shadow/shadow-engine/shadow-file-format/test/Catch2Test.cpp
Curle a3e89b4e8f
Replace the renderer with a modern, module version. (#7)
* New Vulkan Renderer Module & Associated Fixups
2022-11-26 16:44:16 +00:00

6 lines
125 B
C++

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