9 lines
113 B
C++
9 lines
113 B
C++
|
#include "catch.hpp"
|
||
|
|
||
|
#include "mylib/foo.hpp"
|
||
|
|
||
|
TEST_CASE("Foo Test", "[foo]")
|
||
|
{
|
||
|
REQUIRE(mylib::foo() == 42);
|
||
|
}
|