terminal/test/test_demo.cpp

6 lines
102 B
C++

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