mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
imagingArray_test.cpp
Go to the documentation of this file.
1/** \file imagingArray_test.cpp
2 * \brief Placeholder tests for APIs declared in include/wfp/imagingArray.hpp.
3 */
4#include "../../catch2/catch.hpp"
5
7
8/** \cond */
9/// Compile the CPU imaging-array implementation with its FFTW allocator.
10template struct mx::wfp::fftwAllocator<std::complex<double>>;
11template class mx::wfp::imagingArray<std::complex<double>, mx::wfp::fftwAllocator<std::complex<double>>, 0>;
12/** \endcond */
13
14/** \defgroup imagingArray_unit_tests imagingArray Unit Tests
15 * \ingroup wfp_unit_tests
16 */
17
18namespace unitTest::placeholder::wfp_imagingArray_test
19{
20
21/** \brief Verifies that APIs declared in include/wfp/imagingArray.hpp remain available to the unit-test target.
22 *
23 * \ingroup imagingArray_unit_tests
24 * \todo Add behavioral assertions for the APIs declared in include/wfp/imagingArray.hpp.
25 */
26TEST_CASE( "imagingArray API has a test placeholder", "[wfp::imagingArray][placeholder]" )
27{
28 SUCCEED( "imagingArray behavioral assertions are pending." );
29}
30
31} // namespace unitTest::placeholder::wfp_imagingArray_test
TEST_CASE("imagingArray API has a test placeholder", "[wfp::imagingArray][placeholder]")
Verifies that APIs declared in include/wfp/imagingArray.hpp remain available to the unit-test target.
Declares and defines a class for managing images.