1//
2// NumberFormatterTest.h
3//
4// Definition of the NumberFormatterTest class.
5//
6// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef NumberFormatterTest_INCLUDED
14#define NumberFormatterTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class NumberFormatterTest: public CppUnit::TestCase
22{
23public:
24 NumberFormatterTest(const std::string& name);
25 ~NumberFormatterTest();
26
27 void testFormat();
28 void testFormat0();
29 void testFormatBool();
30 void testFormatHex();
31 void testFormatFloat();
32 void testAppend();
33 void testInfNaN();
34
35 void setUp();
36 void tearDown();
37
38 static CppUnit::Test* suite();
39
40private:
41};
42
43
44#endif // NumberFormatterTest_INCLUDED
45