5 lines
99 B
C++
5 lines
99 B
C++
|
#include <catch2/catch.hpp>
|
||
|
|
||
|
TEST_CASE("15 is less than 20", "[numbers]") {
|
||
|
REQUIRE(15 < 20);
|
||
|
}
|