mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-03-20 19:07:55 +05:00
26 lines
500 B
C++
26 lines
500 B
C++
![]() |
#ifndef __XAO_BREPGEOMETRY_TEST_HXX__
|
||
|
#define __XAO_BREPGEOMETRY_TEST_HXX__
|
||
|
|
||
|
#include <cppunit/extensions/HelperMacros.h>
|
||
|
|
||
|
#include "../Xao.hxx"
|
||
|
|
||
|
namespace XAO
|
||
|
{
|
||
|
class BrepGeometryTest: public CppUnit::TestFixture
|
||
|
{
|
||
|
CPPUNIT_TEST_SUITE(BrepGeometryTest);
|
||
|
CPPUNIT_TEST(testGetIDs);
|
||
|
CPPUNIT_TEST_SUITE_END();
|
||
|
|
||
|
public:
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
void cleanUp();
|
||
|
|
||
|
void testGetIDs();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // __XAO_BREPGEOMETRY_TEST_HXX__
|