mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
constants_test.cpp
Go to the documentation of this file.
1/** \file constants_test.cpp
2 * \brief Placeholder tests for APIs declared in include/math/constants.hpp.
3 */
4#include "../../catch2/catch.hpp"
5
6#include "../../../include/math/constants.hpp"
7
8/** \defgroup math_constants_unit_tests Mathematical Constants Unit Tests
9 * \ingroup math_unit_tests
10 */
11
12namespace unitTest::placeholder::math_constants_test
13{
14
15/** \brief Verifies that APIs declared in include/math/constants.hpp remain available to the unit-test target.
16 *
17 * \ingroup math_constants_unit_tests
18 * \todo Add behavioral assertions for the APIs declared in include/math/constants.hpp.
19 */
20TEST_CASE( "constants API has a test placeholder", "[math::constants][placeholder]" )
21{
22 SUCCEED( "constants behavioral assertions are pending." );
23}
24
25} // namespace unitTest::placeholder::math_constants_test
TEST_CASE("constants API has a test placeholder", "[math::constants][placeholder]")
Verifies that APIs declared in include/math/constants.hpp remain available to the unit-test target.