Lines Matching refs:excluder_
41 excluder_ = std::make_unique<ExcluderChromeOS>(&prefs_); in SetUp()
46 unique_ptr<ExcluderChromeOS> excluder_; member in chromeos_update_engine::ExcluderChromeOSTest
50 EXPECT_FALSE(excluder_->IsExcluded(kFakeHash)); in TEST_F()
51 EXPECT_TRUE(excluder_->Exclude(kFakeHash)); in TEST_F()
52 EXPECT_TRUE(excluder_->IsExcluded(kFakeHash)); in TEST_F()
56 EXPECT_TRUE(excluder_->Exclude("abc")); in TEST_F()
57 EXPECT_TRUE(excluder_->Exclude(kFakeHash)); in TEST_F()
58 EXPECT_TRUE(excluder_->IsExcluded("abc")); in TEST_F()
59 EXPECT_TRUE(excluder_->IsExcluded(kFakeHash)); in TEST_F()
61 EXPECT_TRUE(excluder_->Reset()); in TEST_F()
62 EXPECT_FALSE(excluder_->IsExcluded("abc")); in TEST_F()
63 EXPECT_FALSE(excluder_->IsExcluded(kFakeHash)); in TEST_F()