|
|
@@ -7,7 +7,7 @@ namespace JsonGeneratorTests
|
|
|
{
|
|
|
TEST_CLASS(JsonArrayTests)
|
|
|
{
|
|
|
- JsonArray<3> arr;
|
|
|
+ JsonArray<2> arr;
|
|
|
|
|
|
public:
|
|
|
|
|
|
@@ -31,6 +31,15 @@ namespace JsonGeneratorTests
|
|
|
AssertJsonIs("['hello','world']");
|
|
|
}
|
|
|
|
|
|
+ TEST_METHOD(OverCapacity)
|
|
|
+ {
|
|
|
+ arr.add("hello");
|
|
|
+ arr.add("world");
|
|
|
+ arr.add("lost");
|
|
|
+
|
|
|
+ AssertJsonIs("['hello','world']");
|
|
|
+ }
|
|
|
+
|
|
|
void AssertJsonIs(const char* expected)
|
|
|
{
|
|
|
char buffer[256];
|