mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 04:52:22 +02:00
Added a test that append a normal string
This commit is contained in:
@ -29,6 +29,12 @@ namespace JsonGeneratorTests
|
|||||||
assertResultIs("");
|
assertResultIs("");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_METHOD(AppendString)
|
||||||
|
{
|
||||||
|
append("ABCD");
|
||||||
|
assertResultIs("ABCD");
|
||||||
|
}
|
||||||
|
|
||||||
void append(const char* s)
|
void append(const char* s)
|
||||||
{
|
{
|
||||||
sb->append(s);
|
sb->append(s);
|
||||||
|
Reference in New Issue
Block a user