Skip to content
#

no-dependencies

Here are 410 public repositories matching this topic...

TERMIK
TERMIK commented Sep 21, 2020

Hello.
I've included the header file "catch.hpp" in my iOS application where I have a C++ part and defined #define CATCH_CONFIG_MAIN in a cpp file that I want to be tested.

I've also written a simple test:

int return_int(int arg){
return 1;
}

TEST_CASE( "Test", "[int]" ) {
REQUIRE(return_int(1) == 1);
REQUIRE(return_int(2) == 1);
}

But all I have are these two errors

Improve this page

Add a description, image, and links to the no-dependencies topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the no-dependencies topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.