mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-22 16:41:30 +03:00
8 lines
128 B
C++
8 lines
128 B
C++
#include "catch.hpp"
|
|
|
|
#include "hello-world.hpp"
|
|
|
|
TEST_CASE("Returns hello world.") {
|
|
REQUIRE(sayHi() == "Hello world!");
|
|
}
|