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