Home
last modified time | relevance | path

Searched refs:cTestList (Results 1 – 1 of 1) sorted by relevance

/third_party/openh264/test/common/
DCWelsListTest.cpp8 CWelsList<int> cTestList; in TEST() local
12 ASSERT_TRUE (cTestList.push_back (&a)); in TEST()
13 EXPECT_TRUE (1 == cTestList.size()) << "after push size=" << cTestList.size() ; in TEST()
15 cTestList.pop_front(); in TEST()
16 EXPECT_TRUE (0 == cTestList.size()) << "after pop size=" << cTestList.size() ; in TEST()
21 CWelsList<int> cTestList; in TEST() local
28 EXPECT_TRUE (i == cTestList.size()) << "before push size=" << cTestList.size() ; in TEST()
29 ASSERT_TRUE (cTestList.push_back (pPointer)); in TEST()
31 EXPECT_TRUE (10 == cTestList.size()) << "after push size=" << cTestList.size() ; in TEST()
35 cTestList.pop_front(); in TEST()
[all …]