iphreeqc/classes/TestCIsotope.h
David L Parkhurst 60a1544019 Copying new classes (cxx) and cpp files to src
Will remove cpp and header files and make phreeqc an external directory.




git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@785 1feff8c3-07ed-0310-ac33-dd36852eb9cd
2006-02-16 00:21:39 +00:00

40 lines
804 B
C++

#if !defined(TESTCISOTOPE_H_INCLUDED)
#define TESTCISOTOPE_H_INCLUDED
#include "Isotope.h"
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/TestFixture.h>
class TestCIsotope :
public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( TestCIsotope );
CPPUNIT_TEST( test_read_1 );
CPPUNIT_TEST( test_read_2 );
CPPUNIT_TEST( test_read_3 );
CPPUNIT_TEST( test_read_4 );
CPPUNIT_TEST( test_read_5 );
CPPUNIT_TEST( test_read_6 );
CPPUNIT_TEST( test_read_7 );
CPPUNIT_TEST( test_read_8 );
CPPUNIT_TEST_SUITE_END();
public:
TestCIsotope(void);
~TestCIsotope(void);
public:
// read
void test_read_1();
void test_read_2();
void test_read_3();
void test_read_4();
void test_read_5();
void test_read_6();
void test_read_7();
void test_read_8();
};
#endif // TESTCISOTOPE_H_INCLUDED