iphreeqc/gtest/TestVar.cpp
2020-08-25 12:27:15 -06:00

11 lines
132 B
C++

#include <gtest/gtest.h>
#include "../src/Var.h"
TEST(TestVar, VarInit)
{
VAR v;
::VarInit(&v);
ASSERT_EQ(TT_EMPTY, v.type);
}