mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 02:53:10 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
25 lines
466 B
C++
25 lines
466 B
C++
//
|
|
// SQLiteTestSuite.cpp
|
|
//
|
|
// $Id: //poco/Main/Data/SQLite/testsuite/src/SQLiteTestSuite.cpp#2 $
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "SQLiteTestSuite.h"
|
|
#include "SQLiteTest.h"
|
|
|
|
|
|
CppUnit::Test* SQLiteTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("SQLiteTestSuite");
|
|
|
|
pSuite->addTest(SQLiteTest::suite());
|
|
|
|
return pSuite;
|
|
}
|