Files
ArduinoJson/JsonGeneratorTests/JsonArrayTests.cpp

22 lines
437 B
C++
Raw Normal View History

2014-06-24 13:19:23 +02:00
#include "CppUnitTest.h"
#include "JsonArray.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace JsonGeneratorTests
{
TEST_CLASS(JsonArrayTests)
{
public:
TEST_METHOD(EmptyArray)
{
JsonArray arr;
char buffer[256];
arr.writeTo(buffer, sizeof(buffer));
Assert::AreEqual("[]", buffer);
}
};
}