API
 
Loading...
Searching...
No Matches
tty_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 "../netSerial.hpp"
9#include "../telnetConn.hpp"
10#include "../ttyErrors.hpp"
11#include "../ttyUSB.hpp"
12#include "../usbDevice.hpp"
13
14namespace template_test
15{
16
17SCENARIO( "xxxx", "[template]" )
18{
19 GIVEN("xxxxx")
20 {
21 int rv;
22
23 WHEN("xxxx")
24 {
25 rv = 0;
26
27 REQUIRE(rv == 0);
28 }
29 }
30}
31} //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