mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
wavefront_test.cpp
Go to the documentation of this file.
1/** \file wavefront_test.cpp
2 * \brief Placeholder tests for simulated wavefronts.
3 */
4#include "../../../catch2/catch.hpp"
5
6#include "../../../../include/ao/sim/wavefront.hpp"
7
8/** \cond */
9/// Compile the simulated wavefront representation for a representative scalar type.
10template struct mx::AO::sim::wavefront<double>;
11/** \endcond */
12
13/** \defgroup wavefront_unit_tests AO Wavefront Unit Tests
14 * \ingroup ao_sim_unit_tests
15 */
16
17namespace unitTest::placeholder::ao_sim_wavefront_test
18{
19
20/** \brief Verifies that the simulated wavefront API is represented in the unit-test target.
21 *
22 * \ingroup wavefront_unit_tests
23 * \todo Add behavioral assertions for the APIs declared in mx::AO::sim::wavefront.
24 */
25TEST_CASE( "simulated wavefront API has a test placeholder", "[ao::sim::wavefront][placeholder]" )
26{
27 SUCCEED( "Simulated wavefront behavioral assertions are pending." );
28}
29
30} // namespace unitTest::placeholder::ao_sim_wavefront_test
TEST_CASE("Loading aoAtmosphere config settings", "[ao::analysis::aoAtmosphere]")
Verify parsing and validation of atmosphere configuration settings.
Structure containing the phase and amplitude of a wavefront.
Definition wavefront.hpp:24