terminal/test/test_demo.cpp

6 lines
102 B
C++
Raw Normal View History

#include <catch2/catch.hpp>
2020-01-08 19:19:26 +01:00
#include "demo.hpp"
TEST_CASE("Demo test") {
REQUIRE(test() == 42);
}