mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
28 lines
408 B
C++
28 lines
408 B
C++
//
|
|
// OAuthTestSuite.h
|
|
//
|
|
// Definition of the OAuthTestSuite class.
|
|
//
|
|
// Copyright (c) 2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef OAuthTestSuite_INCLUDED
|
|
#define OAuthTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class OAuthTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // OAuthTestSuite_INCLUDED
|