mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
tagT_test.cpp
Go to the documentation of this file.
1/** \file tagT_test.cpp
2 * \brief Placeholder tests for APIs declared in include/meta/tagT.hpp.
3 */
4#include "../../catch2/catch.hpp"
5
7
8/** \cond */
9/// Compile the tag wrapper for a representative payload type.
10template struct mx::meta::tagT<int>;
11/** \endcond */
12
13/** \defgroup tagT_unit_tests tagT Unit Tests
14 * \ingroup meta_unit_tests
15 */
16
17namespace unitTest::placeholder::meta_tagT_test
18{
19
20/** \brief Verifies that APIs declared in include/meta/tagT.hpp remain available to the unit-test target.
21 *
22 * \ingroup tagT_unit_tests
23 * \todo Add behavioral assertions for the APIs declared in include/meta/tagT.hpp.
24 */
25TEST_CASE( "tagT API has a test placeholder", "[meta::tagT][placeholder]" )
26{
27 SUCCEED( "tagT behavioral assertions are pending." );
28}
29
30} // namespace unitTest::placeholder::meta_tagT_test
TEST_CASE("Loading aoAtmosphere config settings", "[ao::analysis::aoAtmosphere]")
Verify parsing and validation of atmosphere configuration settings.
Empty type for tag dispatching.
Definition tagT.hpp:44
Declares and defines an empty struct for tag dispatching.