mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-23 00:51:36 +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!");
|
||
|
}
|