1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #include <sal/config.h>
11 #include <test/unoapi_test.hxx>
13 using namespace ::com::sun::star
;
14 using namespace ::com::sun::star::uno
;
16 #if !defined(MACOSX) && !defined(_WIN32)
18 class DBAccessTest
: public UnoApiTest
25 CPPUNIT_TEST_SUITE(DBAccessTest
);
27 CPPUNIT_TEST_SUITE_END();
30 DBAccessTest::DBAccessTest()
31 : UnoApiTest("/dbaccess/qa/extras/testdocuments")
35 void DBAccessTest::test() { loadFromURL(u
"testdb.odb"); }
37 CPPUNIT_TEST_SUITE_REGISTRATION(DBAccessTest
);
41 CPPUNIT_PLUGIN_IMPLEMENT();
43 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */