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/types.h>
11 #include <cppunit/TestAssert.h>
12 #include <cppunit/TestFixture.h>
13 #include <cppunit/extensions/HelperMacros.h>
14 #include <cppunit/plugin/TestPlugIn.h>
16 // Just verify that all the generated headers can be included (i.e., that all
17 // the identifiers are valid and do not clash:
18 #include <officecfg/officecfg_qa_allheaders.hxx>
22 class Test
: public CppUnit::TestFixture
{
25 CPPUNIT_TEST_SUITE(Test
);
27 CPPUNIT_TEST_SUITE_END();
30 CPPUNIT_TEST_SUITE_REGISTRATION(Test
);
34 CPPUNIT_PLUGIN_IMPLEMENT();
36 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */