Working on coverage

This commit is contained in:
Randolph Voorhies
2013-07-10 13:14:02 -07:00
parent 4420489a21
commit cd9d8c4b31
3 changed files with 20 additions and 4 deletions

View File

@@ -2662,3 +2662,10 @@ BOOST_AUTO_TEST_CASE( json_polymorphic )
{
test_polymorphic<cereal::JSONInputArchive, cereal::JSONOutputArchive>();
}
namespace mynamespace { struct MyCustomClass {}; }
BOOST_AUTO_TEST_CASE( util )
{
BOOST_CHECK_EQUAL( cereal::util::demangledName<mynamespace::MyCustomClass>(), "mynamespace::MyCustomClass" );
}