1 | // |
---|---|
2 | // HexBinaryTest.h |
3 | // |
4 | // Definition of the HexBinaryTest class. |
5 | // |
6 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
7 | // and Contributors. |
8 | // |
9 | // SPDX-License-Identifier: BSL-1.0 |
10 | // |
11 | |
12 | |
13 | #ifndef HexBinaryTest_INCLUDED |
14 | #define HexBinaryTest_INCLUDED |
15 | |
16 | |
17 | #include "Poco/Foundation.h" |
18 | #include "Poco/CppUnit/TestCase.h" |
19 | |
20 | |
21 | class HexBinaryTest: public CppUnit::TestCase |
22 | { |
23 | public: |
24 | HexBinaryTest(const std::string& name); |
25 | ~HexBinaryTest(); |
26 | |
27 | void testEncoder(); |
28 | void testDecoder(); |
29 | void testEncodeDecode(); |
30 | |
31 | void setUp(); |
32 | void tearDown(); |
33 | |
34 | static CppUnit::Test* suite(); |
35 | |
36 | private: |
37 | }; |
38 | |
39 | |
40 | #endif // HexBinaryTest_INCLUDED |
41 |