Searched refs:expectations_ (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/base/test/expectations/ |
D | parser_unittest.cc | 20 expectations_.push_back(expectation); in EmitExpectation() 32 std::vector<test_expectations::Expectation> expectations_; member in TestExpectationParserTest 44 ASSERT_EQ(1u, expectations_.size()); in TEST_F() 45 EXPECT_EQ("DouglasTest.PoopsOk", expectations_[0].test_name); in TEST_F() 46 EXPECT_EQ(test_expectations::RESULT_TIMEOUT, expectations_[0].result); in TEST_F() 48 expectations_[0].configuration); in TEST_F() 50 ASSERT_EQ(1u, expectations_[0].platforms.size()); in TEST_F() 51 EXPECT_EQ("Win", expectations_[0].platforms[0].name); in TEST_F() 52 EXPECT_EQ("8", expectations_[0].platforms[0].variant); in TEST_F() 60 ASSERT_EQ(1u, expectations_.size()); in TEST_F() [all …]
|
/external/chromium_org/chrome/browser/component_updater/test/ |
D | url_request_post_interceptor.cc | 60 while (!expectations_.empty()) { in ClearExpectations() 61 Expectation expectation(expectations_.front()); in ClearExpectations() 63 expectations_.pop(); in ClearExpectations() 73 expectations_.push(std::make_pair(request_matcher, "")); in ExpectRequest() 83 expectations_.push(std::make_pair(request_matcher, response)); in ExpectRequest() 191 if (interceptor->expectations_.empty()) in MaybeInterceptRequest() 194 interceptor->expectations_.front()); in MaybeInterceptRequest() 198 interceptor->expectations_.pop(); in MaybeInterceptRequest()
|
D | url_request_post_interceptor.h | 84 mutable std::queue<Expectation> expectations_; variable
|
/external/chromium_org/chromeos/process_proxy/ |
D | process_output_watcher_unittest.cc | 107 failed_ = !expectations_.CheckExpectations(output, type); in OnRead() 108 if (failed_ || expectations_.IsDone()) { in OnRead() 141 expectations_.SetTestCase(test_cases[i]); in RunTest() 158 EXPECT_TRUE(expectations_.IsDone()); in RunTest() 176 ProcessWatcherExpectations expectations_; member in chromeos::ProcessOutputWatcherTest
|