Lines Matching refs:fixture
177 fixture_type fixture; in test_steal_move_ctor() local
178 container_type src_copy{fixture.cpq_src}; in test_steal_move_ctor()
181 container_type dst{std::move(fixture.cpq_src)}; in test_steal_move_ctor()
192 fixture_type fixture(arena_fixture.source_allocator); in test_steal_move_ctor_with_allocator() local
193 fixture_type::cpq_type src_copy(fixture.cpq_src); in test_steal_move_ctor_with_allocator()
196 fixture_type::cpq_type dst(std::move(fixture.cpq_src), arena_fixture.source_allocator); in test_steal_move_ctor_with_allocator()
207 fixture_type fixture(arena_fixture.source_allocator); in test_per_element_move_ctor_with_allocator() local
208 fixture_type::cpq_type src_copy(fixture.cpq_src); in test_per_element_move_ctor_with_allocator()
211 move_ctor_called_cpq_size_times.move_ctor_called_times += fixture.container_size; in test_per_element_move_ctor_with_allocator()
213 fixture_type::cpq_type dst(std::move(fixture.cpq_src), arena_fixture.dst_allocator); in test_per_element_move_ctor_with_allocator()
223 fixture_type fixture; in test_steal_move_assign_operator() local
224 fixture_type::cpq_type src_copy(fixture.cpq_src); in test_steal_move_assign_operator()
228 dst = std::move(fixture.cpq_src); in test_steal_move_assign_operator()
241 fixture_type fixture(arena_fixture.source_allocator); in test_steal_move_assign_operator_with_stateful_allocator() local
242 fixture_type::cpq_type src_copy(fixture.cpq_src); in test_steal_move_assign_operator_with_stateful_allocator()
246 dst = std::move(fixture.cpq_src); in test_steal_move_assign_operator_with_stateful_allocator()
258 fixture_type fixture(arena_fixture.source_allocator); in test_per_element_move_assign_operator() local
259 fixture_type::cpq_type src_copy(fixture.cpq_src); in test_per_element_move_assign_operator()
263 move_ctor_called_cpq_size_times.move_ctor_called_times += fixture.container_size; in test_per_element_move_assign_operator()
264 dst = std::move(fixture.cpq_src); in test_per_element_move_assign_operator()