Demo/test/test_demo.cpp
Johannes Theiner e298624c8e + Unit Test Framework
+ README
+ CHANGELOG
+ LICENCE
2019-10-16 16:27:14 +02:00

6 lines
107 B
C++

#include <catch2/catch.hpp>
#include "../src/demo.h"
TEST_CASE("Demo test") {
REQUIRE(test() == 42);
}