mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-09 10:08:35 +02:00
30 lines
423 B
C++
30 lines
423 B
C++
//
|
|
// JSONTestSuite.h
|
|
//
|
|
// $Id$
|
|
//
|
|
// Definition of the JSONTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef JSONTestSuite_INCLUDED
|
|
#define JSONTestSuite_INCLUDED
|
|
|
|
|
|
#include "Poco/CppUnit/TestSuite.h"
|
|
|
|
|
|
class JSONTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // JSONTestSuite_INCLUDED
|