mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-12 15:57:12 +01:00
28 lines
402 B
C
28 lines
402 B
C
|
//
|
||
|
// DataTestSuite.h
|
||
|
//
|
||
|
// Definition of the DataTestSuite class.
|
||
|
//
|
||
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef DataTestSuite_INCLUDED
|
||
|
#define DataTestSuite_INCLUDED
|
||
|
|
||
|
|
||
|
#include "CppUnit/TestSuite.h"
|
||
|
|
||
|
|
||
|
class DataTestSuite
|
||
|
{
|
||
|
public:
|
||
|
static CppUnit::Test* suite();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // DataTestSuite_INCLUDED
|