API
 
Loading...
Searching...
No Matches
semUtils_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 "../semUtils.hpp"
9
10
11namespace template_test
12{
13
14SCENARIO( "xxxx", "[template]" )
15{
16 GIVEN("xxxxx")
17 {
18 int rv;
19
20 WHEN("xxxx")
21 {
22 rv = 0;
23
24 REQUIRE(rv == 0);
25 }
26 }
27}
28} //namespace template_test
#define GIVEN(desc)
Definition catch.hpp:17763
#define WHEN(desc)
Definition catch.hpp:17765
#define SCENARIO(...)
Definition catch.hpp:17760
#define REQUIRE(...)
Definition catch.hpp:17676