IAP GITLAB

Skip to content
Snippets Groups Projects
testLogging.cc 615 B
Newer Older

/**
 * (c) Copyright 2018 CORSIKA Project, corsika-project@lists.kit.edu
 *
 * See file AUTHORS for a list of contributors.
 *
 * This software is distributed under the terms of the GNU General Public
 * Licence version 3 (GPL Version 3). See file LICENSE for a full version of
 * the license.
 */

#include <corsika/logging/Logger.h>

#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one
                          // cpp file
ralfulrich's avatar
ralfulrich committed
#include <catch2/catch.hpp>

TEST_CASE("Logging", "[Logging]") {
  SECTION("sectionOne") {}
ralfulrich's avatar
ralfulrich committed

  SECTION("sectionTwo") {}
ralfulrich's avatar
ralfulrich committed

  SECTION("sectionThree") {}
ralfulrich's avatar
ralfulrich committed
}