mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/branches/ErrorHandling@6026 1feff8c3-07ed-0310-ac33-dd36852eb9cd
18 lines
185 B
C++
18 lines
185 B
C++
#include "TestVar.h"
|
|
#include "Var.h"
|
|
|
|
TestVar::TestVar()
|
|
{
|
|
}
|
|
|
|
TestVar::~TestVar()
|
|
{
|
|
}
|
|
|
|
void TestVar::TestVarInit()
|
|
{
|
|
VAR v;
|
|
::VarInit(&v);
|
|
CPPUNIT_ASSERT_EQUAL(TT_EMPTY, v.type);
|
|
}
|