mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-12 15:57:12 +01:00
23 lines
404 B
C++
23 lines
404 B
C++
|
//
|
||
|
// MongoDBTestSuite.cpp
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "MongoDBTestSuite.h"
|
||
|
#include "MongoDBTest.h"
|
||
|
|
||
|
|
||
|
CppUnit::Test* MongoDBTestSuite::suite()
|
||
|
{
|
||
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("MongoDBTestSuite");
|
||
|
|
||
|
pSuite->addTest(MongoDBTest::suite());
|
||
|
|
||
|
return pSuite;
|
||
|
}
|