1 | // |
2 | // ODBCTestSuite.h |
3 | // |
4 | // Definition of the ODBCTestSuite class. |
5 | // |
6 | // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. |
7 | // and Contributors. |
8 | // |
9 | // SPDX-License-Identifier: BSL-1.0 |
10 | // |
11 | |
12 | |
13 | #ifndef MySQLTestSuite_INCLUDED |
14 | #define MySQLTestSuite_INCLUDED |
15 | |
16 | |
17 | #include "Poco/CppUnit/TestSuite.h" |
18 | |
19 | class MySQLTestSuite |
20 | { |
21 | public: |
22 | static CppUnit::Test* suite(); |
23 | |
24 | private: |
25 | static void addTest(CppUnit::TestSuite* pSuite, CppUnit::Test* pT); |
26 | }; |
27 | |
28 | |
29 | #endif // MySQLTestSuite_INCLUDED |
30 | |