API
 
Loading...
Searching...
No Matches
testXWC.hpp
Go to the documentation of this file.
1/// \file testXWC.hpp
2/** Support for testing of the XWCtk
3 *
4 */
5#include "catch2/catch.hpp"
6
7#ifndef testXWC_hpp
8 #define testXWC_hpp
9
10 /// This inserts an unused call to a function signature to make doxygen make the link
11 /** Use this if a test uses a special namespace which would prevent doxygen from auto-linking,
12 * or to force reference to a protected or private member of a class.
13 *
14 * \param fxn is the function call of the non-special-namespace function that is being tested
15 *
16 * \ingroup testing
17 */
18 #define XWCTEST_DOXYGEN_REF( fxn ) \
19 if constexpr( false ) \
20 { \
21 fxn; \
22 }
23
24/// Namespace for all libXWC tests
25/** \ingroup tests
26 *
27 */
28namespace libXWCTest
29{
30} // namespace libXWCTest
31
32#endif
Namespace for all libXWC tests.
Definition MagAOXApp.hpp:49