summaryrefslogtreecommitdiff
path: root/cad/plugins/NanoVision-1/src/Interface/NXNumbersTest.h
blob: 188c4704082a45ead5e9d1f454e952ac8d5ab8fd (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
// Copyright 2008 Nanorex, Inc.  See LICENSE file for details.

#ifndef NX_NUMBERSTEST_H
#define NX_NUMBERSTEST_H

#include <cppunit/extensions/HelperMacros.h>

#include "Nanorex/Interface/NXNumbers.h"

using namespace Nanorex;


/* CLASS: NXNumbersTest */
class NXNumbersTest : public CPPUNIT_NS::TestFixture {

	CPPUNIT_TEST_SUITE(NXNumbersTest);
	CPPUNIT_TEST(toCharTest);
	CPPUNIT_TEST_SUITE_END();

	public:
		void setUp();
		void tearDown();

		void toCharTest();
};

#endif