mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-25 15:19:21 +01:00
42 lines
682 B
C++
Executable File
42 lines
682 B
C++
Executable File
//
|
|
// UTF8StringTest.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/UTF8StringTest.h#1 $
|
|
//
|
|
// Definition of the UTF8StringTest class.
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef UTF8StringTest_INCLUDED
|
|
#define UTF8StringTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class UTF8StringTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
UTF8StringTest(const std::string& name);
|
|
~UTF8StringTest();
|
|
|
|
void testCompare();
|
|
void testTransform();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // UTF8StringTest_INCLUDED
|