forked from bblanchon/ArduinoJson
Added a test with a NULL string
This commit is contained in:
@ -28,6 +28,12 @@ namespace JsonGeneratorTests
|
||||
assertResultIs("");
|
||||
}
|
||||
|
||||
TEST_METHOD(Null)
|
||||
{
|
||||
append(NULL);
|
||||
assertResultIs("null");
|
||||
}
|
||||
|
||||
TEST_METHOD(OneString)
|
||||
{
|
||||
append("ABCD");
|
||||
|
Reference in New Issue
Block a user