update emoji autocorrect entries from po-files
[LibreOffice.git] / basegfx / test / basegfx3d.cxx
blob73040bd39502c765c7e18ebd918e8de21c9df2f1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <sal/types.h>
21 #include <cppunit/TestAssert.h>
22 #include <cppunit/TestFixture.h>
23 #include <cppunit/extensions/HelperMacros.h>
25 namespace basegfx3d
28 class b3dhommatrix : public CppUnit::TestFixture
30 public:
31 // initialise your test code values here.
32 void setUp() SAL_OVERRIDE
36 void tearDown() SAL_OVERRIDE
40 // insert your test code here.
41 // this is only demonstration code
42 void EmptyMethod()
44 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
47 // Change the following lines only, if you add, remove or rename
48 // member functions of the current class,
49 // because these macros are need by auto register mechanism.
51 CPPUNIT_TEST_SUITE(b3dhommatrix);
52 CPPUNIT_TEST(EmptyMethod);
53 CPPUNIT_TEST_SUITE_END();
54 }; // class b3dhommatrix
56 class b3dpoint : public CppUnit::TestFixture
58 public:
59 // initialise your test code values here.
60 void setUp() SAL_OVERRIDE
64 void tearDown() SAL_OVERRIDE
68 // insert your test code here.
69 // this is only demonstration code
70 void EmptyMethod()
72 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
75 // Change the following lines only, if you add, remove or rename
76 // member functions of the current class,
77 // because these macros are need by auto register mechanism.
79 CPPUNIT_TEST_SUITE(b3dpoint);
80 CPPUNIT_TEST(EmptyMethod);
81 CPPUNIT_TEST_SUITE_END();
82 }; // class b3dpoint
84 class b3drange : public CppUnit::TestFixture
86 public:
87 // initialise your test code values here.
88 void setUp() SAL_OVERRIDE
92 void tearDown() SAL_OVERRIDE
96 // insert your test code here.
97 void EmptyMethod()
101 // Change the following lines only, if you add, remove or rename
102 // member functions of the current class,
103 // because these macros are need by auto register mechanism.
105 CPPUNIT_TEST_SUITE(b3drange);
106 CPPUNIT_TEST(EmptyMethod);
107 CPPUNIT_TEST_SUITE_END();
108 }; // class b3drange
110 class b3dtuple : public CppUnit::TestFixture
112 public:
113 // initialise your test code values here.
114 void setUp() SAL_OVERRIDE
118 void tearDown() SAL_OVERRIDE
122 // insert your test code here.
123 // this is only demonstration code
124 void EmptyMethod()
126 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
129 // Change the following lines only, if you add, remove or rename
130 // member functions of the current class,
131 // because these macros are need by auto register mechanism.
133 CPPUNIT_TEST_SUITE(b3dtuple);
134 CPPUNIT_TEST(EmptyMethod);
135 CPPUNIT_TEST_SUITE_END();
136 }; // class b3dtuple
138 class b3dvector : public CppUnit::TestFixture
140 public:
141 // initialise your test code values here.
142 void setUp() SAL_OVERRIDE
146 void tearDown() SAL_OVERRIDE
150 // insert your test code here.
151 void EmptyMethod()
155 // Change the following lines only, if you add, remove or rename
156 // member functions of the current class,
157 // because these macros are need by auto register mechanism.
159 CPPUNIT_TEST_SUITE(b3dvector);
160 CPPUNIT_TEST(EmptyMethod);
161 CPPUNIT_TEST_SUITE_END();
162 }; // class b3dvector
164 CPPUNIT_TEST_SUITE_REGISTRATION(basegfx3d::b3dhommatrix);
165 CPPUNIT_TEST_SUITE_REGISTRATION(basegfx3d::b3dpoint);
166 CPPUNIT_TEST_SUITE_REGISTRATION(basegfx3d::b3drange);
167 CPPUNIT_TEST_SUITE_REGISTRATION(basegfx3d::b3dtuple);
168 CPPUNIT_TEST_SUITE_REGISTRATION(basegfx3d::b3dvector);
169 } // namespace basegfx3d
171 // this macro creates an empty function, which will called by the RegisterAllFunctions()
172 // to let the user the possibility to also register some functions by hand.
173 // NOADDITIONAL;
175 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */