Last change
on this file since e62daa was 59e7832, checked in by Tillmann Crueger <crueger@…>, 15 years ago |
Added unittests for planes
|
-
Property mode
set to
100644
|
File size:
732 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * PlaneUnittest.hpp
|
---|
3 | *
|
---|
4 | * Created on: Apr 30, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef PLANEUNITTEST_HPP_
|
---|
9 | #define PLANEUNITTEST_HPP_
|
---|
10 |
|
---|
11 | #include <cppunit/extensions/HelperMacros.h>
|
---|
12 |
|
---|
13 | #include "Plane.hpp"
|
---|
14 |
|
---|
15 | class PlaneUnittest : public CppUnit::TestFixture
|
---|
16 | {
|
---|
17 | CPPUNIT_TEST_SUITE( PlaneUnittest) ;
|
---|
18 | CPPUNIT_TEST ( constructionErrorTest );
|
---|
19 | CPPUNIT_TEST ( constructionResultTest );
|
---|
20 | CPPUNIT_TEST ( pointsTest );
|
---|
21 | CPPUNIT_TEST ( operationsTest );
|
---|
22 | CPPUNIT_TEST_SUITE_END();
|
---|
23 |
|
---|
24 | public:
|
---|
25 | void setUp();
|
---|
26 | void tearDown();
|
---|
27 |
|
---|
28 | void constructionErrorTest();
|
---|
29 | void constructionResultTest();
|
---|
30 | void pointsTest();
|
---|
31 | void operationsTest();
|
---|
32 |
|
---|
33 | private:
|
---|
34 | Plane *p1;
|
---|
35 | Plane *p2;
|
---|
36 | Plane *p3;
|
---|
37 | Plane *p4;
|
---|
38 | };
|
---|
39 |
|
---|
40 | #endif /* PLANEUNITTEST_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.