mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
point2D_test.cpp
Go to the documentation of this file.
1/** \file point2D_test.cpp
2 * \brief Placeholder tests for APIs declared in include/math/point2D.hpp.
3 */
4#include "../../catch2/catch.hpp"
5
8
9/** \cond */
10/// Compile the two-dimensional point implementation with its documented radians policy.
12/** \endcond */
13
14/** \defgroup point2D_unit_tests point2D Unit Tests
15 * \ingroup math_unit_tests
16 */
17
18namespace unitTest::placeholder::math_point2D_test
19{
20
21/** \brief Verifies that APIs declared in include/math/point2D.hpp remain available to the unit-test target.
22 *
23 * \ingroup point2D_unit_tests
24 * \todo Add behavioral assertions for the APIs declared in include/math/point2D.hpp.
25 */
26TEST_CASE( "point2D API has a test placeholder", "[math::point2D][placeholder]" )
27{
28 SUCCEED( "point2D behavioral assertions are pending." );
29}
30
31} // namespace unitTest::placeholder::math_point2D_test
A point in 2-dimensional space.
Definition point2D.hpp:42
Utilities for working with angles.
TEST_CASE("point2D API has a test placeholder", "[math::point2D][placeholder]")
Verifies that APIs declared in include/math/point2D.hpp remain available to the unit-test target.
A 2D point in space.