1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00

added tests of json writer

This commit is contained in:
Falk Werner 2020-07-15 18:04:42 +02:00
parent 6c5ff67720
commit b15130cda6

View File

@ -194,3 +194,22 @@ TEST(json_writer, write_deep_nested_array)
ASSERT_EQ(expected, writer.take());
}
TEST(json_writer, write_bytes)
{
writer writer;
wf_impl_json_write_bytes(writer, "\0\0", 2);
ASSERT_EQ("\"AAA\"", writer.take());
}
TEST(json_writer, reset)
{
writer writer;
wf_impl_json_write_string(writer, "some value");
wf_impl_json_writer_reset(writer);
wf_impl_json_write_int(writer,42);
ASSERT_EQ("42", writer.take());
}