The Wayback Machine - https://web.archive.org/web/20201001205502/https://github.com/topics/header-only
Skip to content
#

header-only

Here are 941 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 header-only 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 header-only topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.