forked from bblanchon/ArduinoJson
Added a test that append a normal string
This commit is contained in:
@ -29,6 +29,12 @@ namespace JsonGeneratorTests
|
||||
assertResultIs("");
|
||||
}
|
||||
|
||||
TEST_METHOD(AppendString)
|
||||
{
|
||||
append("ABCD");
|
||||
assertResultIs("ABCD");
|
||||
}
|
||||
|
||||
void append(const char* s)
|
||||
{
|
||||
sb->append(s);
|
||||
|
Reference in New Issue
Block a user