1//
2// DynamicTestSuite.cpp
3//
4// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
5// and Contributors.
6//
7// SPDX-License-Identifier: BSL-1.0
8//
9
10
11#include "DynamicTestSuite.h"
12#include "VarTest.h"
13
14
15CppUnit::Test* DynamicTestSuite::suite()
16{
17 CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("DynamicTestSuite");
18
19 pSuite->addTest(VarTest::suite());
20
21 return pSuite;
22}
23