1#ifndef _GENERIC_NUMBER_FORMAT_CONSTRUCTOR_TEST_
2#define _GENERIC_NUMBER_FORMAT_CONSTRUCTOR_TEST_
3
4#include <cppunit/TestCase.h>
5
6class GenericNumberFormatConstructorTest : public CppUnit::TestCase {
7	public:
8		GenericNumberFormatConstructorTest() {}
9		GenericNumberFormatConstructorTest(string name)
10			: TestCase(name) {}
11
12		void ConstructorTest1();
13
14		static Test* Suite();
15};
16
17#endif	// _GENERIC_NUMBER_FORMAT_CONSTRUCTOR_TEST_
18