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