Home | History | Annotate | Download | only in password_manager

Lines Matching refs:expectations

176 #define CHECK_FORMS(forms, expectations, i) \
177 CheckFormsAgainstExpectations(forms, expectations, #forms, i)
179 // Ensures that the data in |forms| match |expectations|, causing test failures
182 // matter if |forms| and |expectations| are scrambled.
185 const std::vector<PasswordFormData*>& expectations,
191 EXPECT_EQ(expectations.size(), forms.size()) << test_label;
192 if (expectations.size() != forms.size())
195 for (unsigned int i = 0; i < expectations.size(); ++i) {
199 PasswordFormData* expectation = expectations[i];