10 lines
195 B
C++
10 lines
195 B
C++
#include <catch2/catch_test_macros.hpp>
|
|
#include "library.h"
|
|
|
|
TEST_CASE("This test should pass") {
|
|
REQUIRE(hello() == 0);
|
|
}
|
|
|
|
TEST_CASE("This test should fail") {
|
|
REQUIRE(hello() == 1);
|
|
}
|