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