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