Lines Matching refs:m_pFileAlloc
19 m_pFileAlloc = new FileAlloc(); in FactoriesTest()
25 delete m_pFileAlloc; in ~FactoriesTest()
168 MCLDFile* file = m_pFileAlloc->produce(); in TEST_F()
169 ASSERT_EQ(counter, m_pFileAlloc->size()); in TEST_F()
170 ASSERT_FALSE(m_pFileAlloc->empty()); in TEST_F()
181 MCLDFile* file = m_pFileAlloc->produce( in TEST_F()
183 ASSERT_EQ(counter, m_pFileAlloc->size()); in TEST_F()
184 ASSERT_FALSE(m_pFileAlloc->empty()); in TEST_F()
197 MCLDFile* file = m_pFileAlloc->produce( in TEST_F()
201 ASSERT_EQ(counter - 1, m_pFileAlloc->size()); in TEST_F()
202 ASSERT_FALSE(m_pFileAlloc->empty()); in TEST_F()
204 MCLDFileFactory::iterator file = m_pFileAlloc->begin(); in TEST_F()
205 MCLDFileFactory::iterator fEnd = m_pFileAlloc->end(); in TEST_F()