terminal/test/test_demo.cpp
Johannes Theiner a89b627334 + Unit Test Framework
+ README
+ CHANGELOG
+ LICENSE
2019-10-16 16:44:09 +02:00

6 lines
107 B
C++

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