wasp/stic/test/hello-world.test.cpp

8 lines
128 B
C++

#include "catch.hpp"
#include "hello-world.hpp"
TEST_CASE("Returns hello world.") {
REQUIRE(sayHi() == "Hello world!");
}