API
 
Loading...
Searching...
No Matches
common_test.cpp
Go to the documentation of this file.
1/** \file template_test.cpp
2 * \brief Catch2 tests for the template app.
3 *
4 * History:
5 */
6#include "../../../tests/catch2/catch.hpp"
7
8#include "../config.hpp"
9#include "../defaults.hpp"
10#include "../environment.hpp"
11#include "../paths.hpp"
12
13
14namespace template_test
15{
16
17SCENARIO( "xxxx", "[template]" )
18{
19 GIVEN("xxxxx")
20 {
21 int rv;
22
23 WHEN("xxxx")
24 {
25 rv = 0;
26
27 REQUIRE(rv == 0);
28 }
29 }
30}
31} //namespace template_test
SCENARIO("xxxx", "[template]")
Definition dev_test.cpp:26