blob: ae48307b92c57e10b39d105cac618880d9d9b1e1 (
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
29
30
31
32
|
// Copyright 2008 Nanorex, Inc. See LICENSE file for details.
#ifndef NX_UTILITYTEST_H
#define NX_UTILITYTEST_H
#ifdef WIN32
# ifdef _MSC_VER
# pragma warning(disable:4786)
# endif
#endif
#include <iostream>
#include <fstream>
#include <string>
#include <cppunit/extensions/HelperMacros.h>
#include <Nanorex/Utility/NXUtility.h>
/* CLASS: NXUtilityTest */
class NXUtilityTest : public CPPUNIT_NS::TestFixture {
CPPUNIT_TEST_SUITE(NXUtilityTest);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
};
#endif
|