mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-05 16:26:27 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
42 lines
682 B
C++
42 lines
682 B
C++
//
|
|
// 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
|