Lines Matching refs:cont
30 ContainerType cont(init); in test_ctor()
31 REQUIRE_MESSAGE(cont == expected, "Initialization via initializer_list failed"); in test_ctor()
36 ContainerType cont; in test_assignment_operator() local
37 static_assert(std::is_same< decltype(cont = init), ContainerType& >::value == true, in test_assignment_operator()
40 cont = init; in test_assignment_operator()
41 REQUIRE_MESSAGE(cont == expected, "Assignment from the initializer_list failed"); in test_assignment_operator()
52 ContainerType cont; in test() local
53 cont.assign(init); in test()
54 … REQUIRE_MESSAGE(cont == expected, "assign method with the initializer list argument failed"); in test()
61 ContainerType cont; in test() local
62 cont.insert(init); in test()
63 … REQUIRE_MESSAGE(cont == expected, "insert method with the initializer list argument failed"); in test()