1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: basegfx3d.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
32 // MARKER(update_precomp.py): autogen include statement, do not remove
33 #include "precompiled_basegfx.hxx"
34 // autogenerated file with codegen.pl
36 #include <cppunit/simpleheader.hxx>
41 class b3dhommatrix
: public CppUnit::TestFixture
44 // initialise your test code values here.
53 // insert your test code here.
54 // this is only demonstration code
57 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
58 CPPUNIT_ASSERT_STUB();
61 // Change the following lines only, if you add, remove or rename
62 // member functions of the current class,
63 // because these macros are need by auto register mechanism.
65 CPPUNIT_TEST_SUITE(b3dhommatrix
);
66 CPPUNIT_TEST(EmptyMethod
);
67 CPPUNIT_TEST_SUITE_END();
68 }; // class b3dhommatrix
71 class b3dhompoint
: public CppUnit::TestFixture
74 // initialise your test code values here.
83 // insert your test code here.
86 CPPUNIT_ASSERT_STUB();
89 // Change the following lines only, if you add, remove or rename
90 // member functions of the current class,
91 // because these macros are need by auto register mechanism.
93 CPPUNIT_TEST_SUITE(b3dhompoint
);
94 CPPUNIT_TEST(EmptyMethod
);
95 CPPUNIT_TEST_SUITE_END();
96 }; // class b3dhompoint
99 class b3dpoint
: public CppUnit::TestFixture
102 // initialise your test code values here.
111 // insert your test code here.
112 // this is only demonstration code
115 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
116 CPPUNIT_ASSERT_STUB();
119 // Change the following lines only, if you add, remove or rename
120 // member functions of the current class,
121 // because these macros are need by auto register mechanism.
123 CPPUNIT_TEST_SUITE(b3dpoint
);
124 CPPUNIT_TEST(EmptyMethod
);
125 CPPUNIT_TEST_SUITE_END();
129 class b3drange
: public CppUnit::TestFixture
132 // initialise your test code values here.
141 // insert your test code here.
144 CPPUNIT_ASSERT_STUB();
147 // Change the following lines only, if you add, remove or rename
148 // member functions of the current class,
149 // because these macros are need by auto register mechanism.
151 CPPUNIT_TEST_SUITE(b3drange
);
152 CPPUNIT_TEST(EmptyMethod
);
153 CPPUNIT_TEST_SUITE_END();
157 class b3dtuple
: public CppUnit::TestFixture
160 // initialise your test code values here.
169 // insert your test code here.
170 // this is only demonstration code
173 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
174 CPPUNIT_ASSERT_STUB();
177 // Change the following lines only, if you add, remove or rename
178 // member functions of the current class,
179 // because these macros are need by auto register mechanism.
181 CPPUNIT_TEST_SUITE(b3dtuple
);
182 CPPUNIT_TEST(EmptyMethod
);
183 CPPUNIT_TEST_SUITE_END();
187 class b3dvector
: public CppUnit::TestFixture
190 // initialise your test code values here.
199 // insert your test code here.
202 CPPUNIT_ASSERT_STUB();
205 // Change the following lines only, if you add, remove or rename
206 // member functions of the current class,
207 // because these macros are need by auto register mechanism.
209 CPPUNIT_TEST_SUITE(b3dvector
);
210 CPPUNIT_TEST(EmptyMethod
);
211 CPPUNIT_TEST_SUITE_END();
212 }; // class b3dvector
214 // -----------------------------------------------------------------------------
215 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(basegfx3d::b3dhommatrix
, "basegfx3d");
216 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(basegfx3d::b3dhompoint
, "basegfx3d");
217 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(basegfx3d::b3dpoint
, "basegfx3d");
218 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(basegfx3d::b3drange
, "basegfx3d");
219 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(basegfx3d::b3dtuple
, "basegfx3d");
220 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(basegfx3d::b3dvector
, "basegfx3d");
221 } // namespace basegfx3d
224 // -----------------------------------------------------------------------------
226 // this macro creates an empty function, which will called by the RegisterAllFunctions()
227 // to let the user the possibility to also register some functions by hand.