API
 
Loading...
Searching...
No Matches
mzmqClient_test.cpp
Go to the documentation of this file.
1/** \file mzmqClient_test.cpp
2 * \brief Catch2 tests for the mzmqClient app.
3 * \author Jared R. Males (jaredmales@gmail.com)
4 *
5 * \ingroup mzmqClient_files
6 */
7
8#include "../../../tests/testXWC.hpp"
9
10#include "../mzmqClient.hpp"
11
12using namespace MagAOX::app;
13
14namespace libXWCTest
15{
16
17/** \defgroup mzmqClient_unit_test mzmqClient Unit Tests
18 * \brief Unit tests for the mzmqClient application.
19 *
20 * \ingroup application_unit_test
21 */
22
23/// Namespace for `mzmqClient` unit tests.
24/** \ingroup mzmqClient_unit_test
25 */
26namespace mzmqClientTest
27{
28
29/// Verify the placeholder mzmqClient test harness instantiates the app cleanly.
30/**
31 * \ingroup mzmqClient_unit_test
32 */
33TEST_CASE( "mzmqClient placeholder harness instantiates the app", "[mzmqClient]" )
34{
35 // clang-format off
36 #ifdef MZMQCLIENT_TEST_DOXYGEN_REF
37 mzmqClient();
38 #endif
39 // clang-format on
40
41 SECTION( "default construction succeeds" )
42 {
43 mzmqClient app;
44
45 REQUIRE( true );
46 }
47}
48
49} // namespace mzmqClientTest
50
51} // namespace libXWCTest
MagAO-X application to control reading ImageStreamIO streams from a zeroMQ channel.
TEST_CASE("mzmqClient placeholder harness instantiates the app", "[mzmqClient]")
Verify the placeholder mzmqClient test harness instantiates the app cleanly.
Namespace for all libXWC tests.