mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
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
40 lines
804 B
C++
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
|