Added a test with two strings in a hash table

This commit is contained in:
Benoît Blanchon
2014-06-27 13:52:01 +02:00
parent 1800a8e89e
commit e26cea59e5
2 changed files with 10 additions and 3 deletions

View File

@ -15,21 +15,21 @@ namespace JsonGeneratorTests
jsonIs("[]");
}
TEST_METHOD(AddNull)
TEST_METHOD(Null)
{
addValue((char*)0);
jsonIs("[null]");
}
TEST_METHOD(AddOneString)
TEST_METHOD(OneString)
{
addValue("hello");
jsonIs("[\"hello\"]");
}
TEST_METHOD(AddTwoStrings)
TEST_METHOD(TwoStrings)
{
addValue("hello");
addValue("world");