mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
10 lines
122 B
C++
10 lines
122 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "../src/CVar.hxx"
|
|
|
|
TEST(TestCVar, CVarCtor)
|
|
{
|
|
CVar v;
|
|
ASSERT_EQ(TT_EMPTY, v.type);
|
|
}
|