mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
fitGammaDistribution_test.cpp
Go to the documentation of this file.
1/** \file fitGammaDistribution_test.cpp
2 * \brief Placeholder tests for APIs declared in include/math/fit/fitGammaDistribution.hpp.
3 */
4#include "../../../catch2/catch.hpp"
5
7
8/** \cond */
9/// Compile the four-parameter fitter's theta setter without instantiating incompatible setGuess overloads.
10template void
12/** \endcond */
13
14/** \defgroup fitGammaDistribution_unit_tests fitGammaDistribution Unit Tests
15 * \ingroup math_fit_unit_tests
16 */
17
18namespace unitTest::placeholder::math_fit_fitGammaDistribution_test
19{
20
21/** \brief Verifies that APIs declared in include/math/fit/fitGammaDistribution.hpp remain available to the unit-test
22 * target.
23 *
24 * \ingroup fitGammaDistribution_unit_tests
25 * \todo Add behavioral assertions for the APIs declared in include/math/fit/fitGammaDistribution.hpp.
26 */
27TEST_CASE( "fitGammaDistribution API has a test placeholder", "[math::fit::fitGammaDistribution][placeholder]" )
28{
29 SUCCEED( "fitGammaDistribution behavioral assertions are pending." );
30}
31
32} // namespace unitTest::placeholder::math_fit_fitGammaDistribution_test
Class to manage fitting the GammaDistribution Distribution to data via the levmarInterface.
Tools for fitting the GammaDistribution distribution to data.
TEST_CASE("fitGammaDistribution API has a test placeholder", "[math::fit::fitGammaDistribution][placeholder]")
Verifies that APIs declared in include/math/fit/fitGammaDistribution.hpp remain available to the unit...