forked from bblanchon/ArduinoJson
Test casting a JsonValue to a bool
This commit is contained in:
@ -34,6 +34,12 @@ namespace JsonGeneratorTests
|
||||
setValueAndCheckCast(42L);
|
||||
}
|
||||
|
||||
TEST_METHOD(Bool)
|
||||
{
|
||||
setValueAndCheckCast(true);
|
||||
setValueAndCheckCast(false);
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
template<typename T>
|
||||
|
Reference in New Issue
Block a user