mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38: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
25 lines
482 B
C++
25 lines
482 B
C++
#if !defined(TESTCSOLUTION_H_INCLUDED)
|
|
#define TESTCSOLUTION_H_INCLUDED
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
#include <cppunit/TestFixture.h>
|
|
|
|
class TestCSolution :
|
|
public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE( TestCSolution );
|
|
CPPUNIT_TEST( test_read_ex1 );
|
|
CPPUNIT_TEST( test_read_ex7 );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
TestCSolution(void);
|
|
~TestCSolution(void);
|
|
|
|
public:
|
|
void test_read_ex1();
|
|
void test_read_ex7();
|
|
|
|
};
|
|
#endif // TESTCSOLUTION_H_INCLUDED
|