mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
mftT_test.cpp
Go to the documentation of this file.
1/** \file mftT_test.cpp
2 * \brief Placeholder tests for APIs declared in include/math/ft/mftT.hpp.
3 */
4#include "../../../catch2/catch.hpp"
5
7
8/** \cond */
9/// Compile the CPU rank-two matrix Fourier transform for representative scalar types.
10template class mx::math::ft::mftT<double, std::complex<double>, 2, 0>;
11/** \endcond */
12
13/** \defgroup mftT_unit_tests mftT Unit Tests
14 * \ingroup math_ft_unit_tests
15 */
16
17namespace unitTest::placeholder::math_ft_mftT_test
18{
19
20/** \brief Verifies that APIs declared in include/math/ft/mftT.hpp remain available to the unit-test target.
21 *
22 * \ingroup mftT_unit_tests
23 * \todo Add behavioral assertions for the APIs declared in include/math/ft/mftT.hpp.
24 */
25TEST_CASE( "mftT API has a test placeholder", "[math::ft::mftT][placeholder]" )
26{
27 SUCCEED( "mftT behavioral assertions are pending." );
28}
29
30} // namespace unitTest::placeholder::math_ft_mftT_test
TEST_CASE("mftT API has a test placeholder", "[math::ft::mftT][placeholder]")
Verifies that APIs declared in include/math/ft/mftT.hpp remain available to the unit-test target.
Definition mftT_test.cpp:25
The Matrix Fourier Transform interface.