Added tests that adds a boolean to a hash table

This commit is contained in:
Benoît Blanchon
2014-06-27 13:59:11 +02:00
parent 495efd8629
commit 93ddb9498e
2 changed files with 19 additions and 4 deletions

View File

@ -53,7 +53,7 @@ namespace JsonGeneratorTests
jsonIs("[3.14]");
}
TEST_METHOD(AddTwoNumbers)
TEST_METHOD(TwoNumbers)
{
addValue(3.14);
addValue(2.72);
@ -61,7 +61,7 @@ namespace JsonGeneratorTests
jsonIs("[3.14,2.72]");
}
TEST_METHOD(AddOneNumberOverCapacity)
TEST_METHOD(OneNumberOverCapacity)
{
addValue(3.14);
addValue(2.72);
@ -70,14 +70,14 @@ namespace JsonGeneratorTests
jsonIs("[3.14,2.72]");
}
TEST_METHOD(AddTrue)
TEST_METHOD(OneTrue)
{
addValue(true);
jsonIs("[true]");
}
TEST_METHOD(AddFalse)
TEST_METHOD(OneFalse)
{
addValue(false);