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