This commit is contained in:
Erik Frojdh
2019-08-13 09:16:29 +02:00
parent c2f57f5ab0
commit 6f6ee19906
3 changed files with 25 additions and 3 deletions

View File

@ -43,4 +43,9 @@ TEST_CASE("sls::is_duration"){
TEST_CASE("initializer list"){
REQUIRE(sls::is_light_container<std::initializer_list<int>>::value == true);
}
TEST_CASE("Check for emplace back"){
//we know vector should have this its the type trait that is tested
REQUIRE(sls::has_emplace_back<std::vector<int>>::value == true);
}