blob: 89483431ecf3c25193247ed5f6f41427649020b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright 2008 Nanorex, Inc. See LICENSE file for details.
#ifndef NX_COMMANDRESULTTEST_H
#define NX_COMMANDRESULTTEST_H
#include <cppunit/extensions/HelperMacros.h>
#include "Nanorex/Utility/NXCommandResult.h"
#include "Nanorex/Interface/NXNanoVisionResultCodes.h"
using namespace Nanorex;
/* CLASS: NXCommandResultTest */
class NXCommandResultTest : public CPPUNIT_NS::TestFixture {
CPPUNIT_TEST_SUITE(NXCommandResultTest);
CPPUNIT_TEST(basicTest);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void basicTest();
};
#endif
|