6 lines
107 B
C++
6 lines
107 B
C++
|
#include <catch2/catch.hpp>
|
||
|
#include "../src/demo.h"
|
||
|
|
||
|
TEST_CASE("Demo test") {
|
||
|
REQUIRE(test() == 42);
|
||
|
}
|