Test that bool values are copied

This commit is contained in:
Benoit Blanchon
2014-09-28 21:23:40 +02:00
parent d549070fd3
commit e417c137fc

View File

@ -75,4 +75,13 @@ TEST_F(JsonValueTests, DoubleValuesAreCopied)
jsonValue1 = 456.78;
EXPECT_EQ(123.45, (double) jsonValue2);
}
TEST_F(JsonValueTests, BooleanValuesAreCopied)
{
jsonValue1 = true;
jsonValue2 = jsonValue1;
jsonValue1 = false;
EXPECT_TRUE((bool) jsonValue2);
}