mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2026-05-04 11:55:24 +02:00
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