I want to write the simplest unit test on visual studio 2017. But there is an error - "fatal error LNK1120: unresolved external elements: 23"
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
TEST_CASE("Test", "[test]") {
REQUIRE(1 == 1);
}
I want to write the simplest unit test on visual studio 2017. But there is an error - "fatal error LNK1120: unresolved external elements: 23"
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
TEST_CASE("Test", "[test]") {
REQUIRE(1 == 1);
}