umbra/projs/shadow/shadow-engine/shadow-file-format/test/Catch2Test.cpp
dpeter99 71b95e1ccf
Base of the Module system (#8)
Co-authored-by: Curle <curle@gemwire.uk>
2022-11-26 13:22:36 +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);
}