1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 29 // MARKER(update_precomp.py): autogen include statement, do not remove 30 #include "precompiled_basegfx.hxx" 31 // autogenerated file with codegen.pl 32 33 #include "preextstl.h" 34 #include "cppunit/TestAssert.h" 35 #include "cppunit/TestFixture.h" 36 #include "cppunit/extensions/HelperMacros.h" 37 #include "cppunit/plugin/TestPlugIn.h" 38 #include "postextstl.h" 39 40 namespace basegfx1d 41 { 42 43 class b1drange : public CppUnit::TestFixture 44 { 45 public: 46 // initialise your test code values here. 47 void setUp() 48 { 49 } 50 51 void tearDown() 52 { 53 } 54 55 // insert your test code here. 56 // this is only demonstration code 57 void EmptyMethod() 58 { 59 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1); 60 } 61 62 // Change the following lines only, if you add, remove or rename 63 // member functions of the current class, 64 // because these macros are need by auto register mechanism. 65 66 CPPUNIT_TEST_SUITE(b1drange); 67 CPPUNIT_TEST(EmptyMethod); 68 CPPUNIT_TEST_SUITE_END(); 69 }; // class b1drange 70 71 // ----------------------------------------------------------------------------- 72 CPPUNIT_TEST_SUITE_REGISTRATION(basegfx1d::b1drange); 73 } // namespace basegfx1d 74 75 CPPUNIT_PLUGIN_IMPLEMENT(); 76