diff --git a/tests/Test_FacePolygon.cpp b/tests/Test_FacePolygon.cpp new file mode 100644 index 00000000..851e7940 --- /dev/null +++ b/tests/Test_FacePolygon.cpp @@ -0,0 +1,12 @@ +/* + * File: Test_FacePolygon.cpp + * Author: lene + * + * Created on March 27, 2014, 4:07 PM + */ + +#include "Test_FacePolygon.h" + +void Test_FacePolygon::equals() { + +} \ No newline at end of file diff --git a/tests/Test_FacePolygon.h b/tests/Test_FacePolygon.h new file mode 100644 index 00000000..1d8db891 --- /dev/null +++ b/tests/Test_FacePolygon.h @@ -0,0 +1,22 @@ +/* + * File: Test_FacePolygon.h + * Author: lene + * + * Created on March 27, 2014, 4:07 PM + */ + +#ifndef TEST_FACEPOLYGON_H +#define TEST_FACEPOLYGON_H + +#include + +class Test_FacePolygon: public QObject { + Q_OBJECT + +private slots: + void equals(); + +}; + +#endif /* TEST_FACEPOLYGON_H */ + diff --git a/tests/main.cpp b/tests/main.cpp index 4c1d8139..7fc353af 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -44,6 +44,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "Test_Composite.h" #include "Test_Util.h" #include "Test_PartitionedMultithreadedMap.h" +#include "Test_FacePolygon.h" #include "Auxiliary/TestRunner.h" @@ -80,6 +81,7 @@ int main(int argc, char **argv) { runner.run(new Test_PartitionedMultithreadedMap); runner.run(new Test_Object); runner.run(new Test_Util); + runner.run(new Test_FacePolygon); runner.printSummary(); diff --git a/tests/tests.pro b/tests/tests.pro index 3e866dfa..b7d171a8 100644 --- a/tests/tests.pro +++ b/tests/tests.pro @@ -80,7 +80,9 @@ HEADERS += \ Test_FunctionFactory.h \ Test_FunctionHolder.h \ Test_PartitionedMultithreadedMap.h \ + Test_FacePolygon.h \ Test_Displayable.h + SOURCES += \ Test_Util.cpp \ Test_Composite.cpp \ @@ -104,6 +106,7 @@ SOURCES += \ Test_FunctionFactory.cpp \ Test_FunctionHolder.cpp \ Test_PartitionedMultithreadedMap.cpp \ + Test_FacePolygon.cpp \ Test_Displayable.cpp \ main.cpp