mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
11 lines
132 B
C++
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);
|
|
}
|