Searched refs:TestBase (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/utest/fbl/
H A Dslab_allocator_tests.cpp23 class TestBase { class in namespace:__anon1351
26 TestBase() : ctype_(ConstructType::DEFAULT) { ++allocated_obj_count_; } function in class:__anon1351::TestBase
27 explicit TestBase(const size_t&) : ctype_(ConstructType::LVALUE_REF) { ++allocated_obj_count_; } function in class:__anon1351::TestBase
28 explicit TestBase(size_t&&) : ctype_(ConstructType::RVALUE_REF) { ++allocated_obj_count_; } function in class:__anon1351::TestBase
29 explicit TestBase(const size_t&, size_t&&) function in class:__anon1351::TestBase
34 virtual ~TestBase() { --allocated_obj_count_; }
50 size_t TestBase::allocated_obj_count_;
131 class ObjType : public TestBase,
135 ObjType() : TestBase() { }
136 explicit ObjType(const size_t& val) : TestBase(va
[all...]
H A Drecycler_tests.cpp29 class TestBase { class in namespace:__anon1347
31 TestBase() { recycle_was_called_ = false; } function in class:__anon1347::TestBase
37 bool TestBase::recycle_was_called_;
39 class TestPublicRecycle : public TestBase,
48 class RefedTestPublicRecycle : public TestBase,
58 class TestPrivateRecycle : public TestBase,
68 class RefedTestPrivateRecycle : public TestBase,
102 EXPECT_FALSE(TestBase::recycle_was_called());
105 EXPECT_TRUE(TestBase::recycle_was_called());

Completed in 22 milliseconds