8 lines
77 B
C++
8 lines
77 B
C++
#include <catch2/catch.hpp>
|
|
|
|
TEST_CASE("Dummy")
|
|
{
|
|
REQUIRE(true == true);
|
|
}
|
|
|