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 "../dm.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#include "../summerDevice.hpp"
19#include "../telemeter.hpp"
20#include "../summerDeviceUtils/binaryUart.hpp"
21#include "../summerDeviceUtils/cGraphPacket.hpp"
22#include "../summerDeviceUtils/commands.hpp"
23#include "../summerDeviceUtils/iPacket.hpp"
24#include "../summerDeviceUtils/IUart.hpp"
25#include "../summerDeviceUtils/linux_pinout_client_socket.hpp"
26#include "../summerDeviceUtils/linux_pinout_uart.hpp"
27#include "../summerDeviceUtils/socket.hpp"
28
29
30using namespace MagAOX::app;
31
32namespace template_test
33{
34
35SCENARIO( "xxxx", "[template]" )
36{
37 GIVEN("xxxxx")
38 {
39 int rv;
40
41 WHEN("xxxx")
42 {
43 rv = [];
44
45 REQUIRE(rv == 0);
46 }
47 }
48}
49} //namespace template_test
#define GIVEN(desc)
Definition catch.hpp:17763
#define WHEN(desc)
Definition catch.hpp:17765
#define SCENARIO(...)
Definition catch.hpp:17760
#define REQUIRE(...)
Definition catch.hpp:17676