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

10 lines
122 B
C++

#include <gtest/gtest.h>
#include "../src/CVar.hxx"
TEST(TestCVar, CVarCtor)
{
CVar v;
ASSERT_EQ(TT_EMPTY, v.type);
}