API
 
Loading...
Searching...
No Matches
loPredCtrl_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 "../loPredCtrl.hpp"
9#include "../testPredCtrl.hpp"
10
11using namespace MagAOX::app;
12
13namespace template_test
14{
15
16SCENARIO( "xxxx", "[template]" )
17{
18 GIVEN("xxxxx")
19 {
20 int rv;
21
22 WHEN("xxxx")
23 {
24 rv = 0;
25
26 REQUIRE(rv == 0);
27 }
28 }
29}
30} //namespace template_test
SCENARIO("xxxx", "[template]")
Definition dev_test.cpp:26