mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
28 lines
435 B
C++
28 lines
435 B
C++
//
|
|
// EncodingsTestSuite.h
|
|
//
|
|
// Definition of the EncodingsTestSuite class.
|
|
//
|
|
// Copyright (c) 2018, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
|
|
#ifndef EncodingsTestSuite_INCLUDED
|
|
#define EncodingsTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class EncodingsTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // EncodingsTestSuite_INCLUDED
|