1#include <stdio.h>
2
3#include <GenericNumberFormat.h>
4
5#include <TestShell.h>
6#include <TestUtils.h>
7#include <cppunit/TestAssert.h>
8#include <cppunit/TestCaller.h>
9#include <cppunit/TestSuite.h>
10
11#include "GenericNumberFormatConstructorTest.h"
12
13using namespace CppUnit;
14
15// Suite
16Test *
17GenericNumberFormatConstructorTest::Suite()
18{
19	CppUnit::TestSuite *suite = new CppUnit::TestSuite();
20	typedef CppUnit::TestCaller<GenericNumberFormatConstructorTest> TC;
21
22	suite->addTest(new TC("BGenericNumberFormat::Constructor Test1",
23		&GenericNumberFormatConstructorTest::ConstructorTest1));
24
25	return suite;
26}
27
28// ConstructorTest1
29void GenericNumberFormatConstructorTest::ConstructorTest1()
30{
31	BGenericNumberFormat format;
32}
33
34