geom/src/XAO/tests/BrepGeometryTest.hxx

46 lines
1.2 KiB
C++
Raw Normal View History

2013-08-30 14:13:47 +00:00
#ifndef __XAO_BREPGEOMETRY_TEST_HXX__
#define __XAO_BREPGEOMETRY_TEST_HXX__
#include <cppunit/extensions/HelperMacros.h>
namespace XAO
{
class BrepGeometryTest: public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE(BrepGeometryTest);
CPPUNIT_TEST(testGetIDs);
2013-09-04 16:08:50 +00:00
CPPUNIT_TEST(testGetReferences);
2013-09-09 15:07:57 +00:00
CPPUNIT_TEST(testGetNames);
CPPUNIT_TEST(testGetEdgeVertices);
2013-09-06 11:31:08 +00:00
CPPUNIT_TEST(testGetFaceEdges);
CPPUNIT_TEST(testSolidFaces);
2013-09-02 14:47:30 +00:00
CPPUNIT_TEST(testGetVertex);
CPPUNIT_TEST(testGetEdgeLength);
CPPUNIT_TEST(testGetFaceArea);
CPPUNIT_TEST(testGetSolidVolume);
2013-09-26 09:22:16 +00:00
CPPUNIT_TEST(testParse);
2013-08-30 14:13:47 +00:00
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void cleanUp();
void testGetIDs();
2013-09-04 16:08:50 +00:00
void testGetReferences();
2013-09-09 15:07:57 +00:00
void testGetNames();
void testGetEdgeVertices();
2013-09-06 11:31:08 +00:00
void testGetFaceEdges();
void testSolidFaces();
2013-09-02 14:47:30 +00:00
void testGetVertex();
void testGetEdgeLength();
void testGetFaceArea();
void testGetSolidVolume();
2013-09-26 09:22:16 +00:00
void testParse();
2013-08-30 14:13:47 +00:00
};
}
#endif // __XAO_BREPGEOMETRY_TEST_HXX__