Searched refs:test_object (Results 1 – 1 of 1) sorted by relevance
155 struct test_object { in TEST() struct156 test_object() : v(nullptr) {} in TEST() argument157 test_object(int i) : v(new int(i)) {} in TEST() function158 test_object(const test_object &other) in TEST() argument160 test_object(test_object &&other) : v(other.v) { other.v = nullptr; } in TEST() argument161 ~test_object() { in TEST() argument170 test_object data(7); in TEST()176 std::any_cast<test_object *>(caller.context().get_data()); in TEST()190 std::any_cast<test_object &>(caller.context().get_data()); in TEST()204 std::any_cast<test_object &>(caller.context().get_data()); in TEST()