uibk_703807-Advanced-CXX/cmake-example/tests/foo_test.cpp

9 lines
113 B
C++
Raw Permalink Normal View History

2020-11-26 21:56:26 +01:00
#include "catch.hpp"
#include "mylib/foo.hpp"
TEST_CASE("Foo Test", "[foo]")
{
REQUIRE(mylib::foo() == 42);
}