3bf44e8985
* added test game, moved engine projects under "shadow" folder * More work on build files * fix git ignore * working game folder setup * Work on game rule * [SYNC] work on the shadow engine rule * [SYNC] Added wrapper c sript * Work on wrapper * Working wrapper * Add Vulkan sdk rules * First working build using the CMake toolchain * updates * fix tests * remove .clwb Co-authored-by: dpeter99 <dpeter99@gmail.com>
6 lines
125 B
C++
6 lines
125 B
C++
#define CATCH_CONFIG_MAIN
|
|
#include <catch2/catch.hpp>
|
|
|
|
TEST_CASE("15 is less than 20", "[numbers]") {
|
|
REQUIRE(15 < 20);
|
|
} |