mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
Test that bool values are copied
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user