added new databases to unit tester

This commit is contained in:
David Parkhurst 2018-02-19 19:14:17 -07:00
parent 5b28a87a5d
commit 5c5993abc8
2 changed files with 5 additions and 4 deletions

View File

@ -29,7 +29,8 @@ void TestIPhreeqc::TestLoadDatabase(void)
std::string FILES[] = {"../database/phreeqc.dat", "../database/pitzer.dat", "../database/wateq4f.dat",
"../database/Amm.dat", "../database/frezchem.dat", "../database/iso.dat",
"../database/llnl.dat", "../database/minteq.dat", "../database/minteq.v4.dat",
"../database/sit.dat"
"../database/sit.dat","../database/ColdChem.dat","../database/core10.dat",
"../database/Tipping_Hurley.dat"
};
for (int j = 0; j < sizeof(FILES)/sizeof(std::string); ++j)
{

View File

@ -137,11 +137,11 @@ void TestIPhreeqcLib::TestLoadDatabase(void)
{
int n = ::CreateIPhreeqc();
CPPUNIT_ASSERT(n >= 0);
std::string FILES[] = {"../database/phreeqc.dat", "../database/pitzer.dat", "../database/wateq4f.dat",
std::string FILES[] = { "../database/phreeqc.dat", "../database/pitzer.dat", "../database/wateq4f.dat",
"../database/Amm.dat", "../database/frezchem.dat", "../database/iso.dat",
"../database/llnl.dat", "../database/minteq.dat", "../database/minteq.v4.dat",
"../database/sit.dat"
"../database/sit.dat","../database/ColdChem.dat","../database/core10.dat",
"../database/Tipping_Hurley.dat"
};
for (int j = 0; j < sizeof(FILES)/sizeof(std::string); ++j)
{