Demo/test/test_demo.cpp

6 lines
107 B
C++
Raw Normal View History

#include "../src/demo.h"
2019-11-19 12:26:31 +01:00
#include <catch2/catch.hpp>
TEST_CASE("Demo test") {
REQUIRE(test() == 42);
}