mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
30 lines
489 B
C++
30 lines
489 B
C++
//
|
|
// WindowsTestSuite.h
|
|
//
|
|
// $Id: //poco/1.4/Util/testsuite/src/WindowsTestSuite.h#1 $
|
|
//
|
|
// Definition of the WindowsTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef WindowsTestSuite_INCLUDED
|
|
#define WindowsTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class WindowsTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // WindowsTestSuite_INCLUDED
|