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
20using namespace MagAOX::app;
21
23{
24
25SCENARIO( "xxxx", "[template]" )
26{
27 GIVEN("xxxxx")
28 {
29 int rv;
30
31 WHEN("xxxx")
32 {
33 rv = 0;
34
35 REQUIRE(rv == 0);
36 }
37 }
38}
39} //namespace template_test
SCENARIO("xxxx", "[template]")
Definition dev_test.cpp:25