mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-21 23:56:54 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
30 lines
485 B
C++
30 lines
485 B
C++
//
|
|
// SQLiteTestSuite.h
|
|
//
|
|
// $Id: //poco/Main/Data/SQLite/testsuite/src/SQLiteTestSuite.h#2 $
|
|
//
|
|
// Definition of the SQLiteTestSuite class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef SQLiteTestSuite_INCLUDED
|
|
#define SQLiteTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class SQLiteTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // SQLiteTestSuite_INCLUDED
|