update testing macro

This commit is contained in:
ToruNiina
2018-12-11 23:25:23 +09:00
parent fc6a15440d
commit e79e6150f2
4 changed files with 63 additions and 63 deletions

View File

@@ -19,6 +19,6 @@ BOOST_AUTO_TEST_CASE(test_boolean)
BOOST_AUTO_TEST_CASE(test_boolean_value)
{
TOML11_TEST_PARSE_EQUAL_VALUE( "true", toml::value( true));
TOML11_TEST_PARSE_EQUAL_VALUE("false", toml::value(false));
TOML11_TEST_PARSE_EQUAL_VALUE(parse_value, "true", toml::value( true));
TOML11_TEST_PARSE_EQUAL_VALUE(parse_value, "false", toml::value(false));
}