IAP GITLAB

Skip to content
Snippets Groups Projects
testLogging.cc 314 B
Newer Older
ralfulrich's avatar
ralfulrich committed
#define CATCH_CONFIG_MAIN  // This tells Catch to provide a main() - only do this in one cpp file
#include <catch2/catch.hpp>

ralfulrich's avatar
ralfulrich committed

TEST_CASE( "Logging", "[Logging]" )
{  
  SECTION( "sectionOne" )
    {
    }
  
  SECTION( "sectionTwo" )
    {
    }

  SECTION( "sectionThree" )
    {
    }
}