another test case

This commit is contained in:
Niels 2015-04-08 23:16:35 +02:00
parent 9e8e11339d
commit 9ea3dd9b60

View file

@ -2117,6 +2117,7 @@ TEST_CASE("value conversion")
CHECK_THROWS_AS((json().get<std::list<int>>()), std::logic_error);
CHECK_THROWS_AS((json().get<std::vector<int>>()), std::logic_error);
CHECK_THROWS_AS((json().get<std::vector<json>>()), std::logic_error);
CHECK_THROWS_AS((json().get<std::list<json>>()), std::logic_error);
}
}
}