#if !defined(ANGLE_HAS_RAPIDJSON)
# error RapidJSON must be available to build this file.
#endif
#include "JsonSerializer.h"
#include <gtest/gtest.h>
class JsonSerializerTest : public ::testing::Test
{ … };
TEST_F(JsonSerializerTest, NamedIntValue1)
{ … }
TEST_F(JsonSerializerTest, NamedLongValue)
{ … }
TEST_F(JsonSerializerTest, NamedULongValue)
{ … }
TEST_F(JsonSerializerTest, NamedIntValue2)
{ … }
TEST_F(JsonSerializerTest, NamedStringValue)
{ … }
TEST_F(JsonSerializerTest, ByteArrayValue)
{ … }
TEST_F(JsonSerializerTest, IntVectorValue)
{ … }
TEST_F(JsonSerializerTest, IntVectorAsBlobValue)
{ … }
TEST_F(JsonSerializerTest, SortValues1)
{ … }
TEST_F(JsonSerializerTest, ShortVectorAsBlobValue)
{ … }
TEST_F(JsonSerializerTest, KeyUsedTwice)
{ … }
TEST_F(JsonSerializerTest, NamedBoolValues)
{ … }
TEST_F(JsonSerializerTest, GroupedIntValue)
{ … }
void JsonSerializerTest::SetUp()
{ … }
void JsonSerializerTest::check(const std::string &expect)
{ … }