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 "../dmPokeWFS.hpp"
10#include "../dssShutter.hpp"
11#include "../edtCamera.hpp"
12#include "../frameGrabber.hpp"
13#include "../ioDevice.hpp"
14#include "../semUtilsDerived.hpp"
15#include "../shmimMonitor.hpp"
16#include "../stdCamera.hpp"
17#include "../stdMotionStage.hpp"
18
19using namespace MagAOX::app;
20
22{
23
24SCENARIO( "xxxx", "[template]" )
25{
26 GIVEN("xxxxx")
27 {
28 int rv;
29
30 WHEN("xxxx")
31 {
32 rv = 0;
33
34 REQUIRE(rv == 0);
35 }
36 }
37}
38} //namespace template_test
SCENARIO("xxxx", "[template]")
Definition dev_test.cpp:24