API
 
Loading...
Searching...
No Matches
loPredCtrl_test.cpp
Go to the documentation of this file.
1/** \file loPredCtrl_test.cpp
2 * \brief Catch2 tests for the loPredCtrl app.
3 * \author Jared R. Males (jaredmales@gmail.com)
4 *
5 * \ingroup loPredCtrl_files
6 */
7
8#include "../../../tests/testXWC.hpp"
9
10#include "../loPredCtrl.hpp"
11#include "../testPredCtrl.hpp"
12
13using namespace MagAOX::app;
14
15namespace libXWCTest
16{
17
18/** \defgroup loPredCtrl_unit_test loPredCtrl Unit Tests
19 * \brief Unit tests for the loPredCtrl application.
20 *
21 * \ingroup application_unit_test
22 */
23
24/// Namespace for `loPredCtrl` unit tests.
25/** \ingroup loPredCtrl_unit_test
26 */
27namespace loPredCtrlTest
28{
29
30/// Verify the placeholder loPredCtrl test harness instantiates the app cleanly.
31/**
32 * \ingroup loPredCtrl_unit_test
33 */
34TEST_CASE( "loPredCtrl placeholder harness instantiates the app", "[loPredCtrl]" )
35{
36 // clang-format off
37 #ifdef LOPREDCTRL_TEST_DOXYGEN_REF
38 loPredCtrl();
39 #endif
40 // clang-format on
41
42 SECTION( "default construction succeeds" )
43 {
44 loPredCtrl app;
45
46 REQUIRE( true );
47 }
48}
49
50} // namespace loPredCtrlTest
51
52} // namespace libXWCTest
TEST_CASE("loPredCtrl placeholder harness instantiates the app", "[loPredCtrl]")
Verify the placeholder loPredCtrl test harness instantiates the app cleanly.
Namespace for all libXWC tests.