API
 
Loading...
Searching...
No Matches
dev_test.cpp
Go to the documentation of this file.
1/** \file template_test.cpp
2 * \brief Catch2 tests for the template app.
3 *
4 * History:
5 */
6#include "../../../../tests/catch2/catch.hpp"
7
8#include "../../MagAOXApp.hpp"
9#include "../dm.hpp"
10#include "../dmPokeWFS.hpp"
11#include "../dssShutter.hpp"
12#include "../edtCamera.hpp"
13#include "../frameGrabber.hpp"
14#include "../ioDevice.hpp"
15#include "../semUtilsDerived.hpp"
16#include "../shmimMonitor.hpp"
17#include "../stdCamera.hpp"
18#include "../stdMotionStage.hpp"
19#include "../telemeter.hpp"
20
21using namespace MagAOX::app;
22
24{
25
26SCENARIO( "xxxx", "[template]" )
27{
28 GIVEN("xxxxx")
29 {
30 int rv;
31
32 WHEN("xxxx")
33 {
34 rv = 0;
35
36 REQUIRE(rv == 0);
37 }
38 }
39}
40} //namespace template_test
SCENARIO("xxxx", "[template]")
Definition dev_test.cpp:26