* add the CVS Makefile.vc
[hkl.git] / test / samplelist_test.h
blobea878a9929bed75ed3497a140d30c5c6e61e5b53
1 #ifndef _SAMPLELIST_TEST_H
2 #define _SAMPLELIST_TEST_H
4 #include <cppunit/extensions/HelperMacros.h>
6 #include "samplelist.h"
7 #include "geometry_eulerian4C.h"
9 class SampleListTest : public CppUnit::TestFixture
11 CPPUNIT_TEST_SUITE( SampleListTest );
12 CPPUNIT_TEST( operators );
13 CPPUNIT_TEST( persistanceIO );
15 CPPUNIT_TEST_SUITE_END();
17 hkl::SampleList * _sampleList;
18 hkl::geometry::eulerian4C::Vertical _geometry;
20 public:
22 void setUp(void);
23 void tearDown(void);
25 void operators(void);
26 void persistanceIO(void);
29 #endif /* _SAMPLELIST_TEST_H */