Home
last modified time | relevance | path

Searched refs:expectation (Results 1 – 25 of 43) sorted by relevance

12

/external/webkit/Tools/Scripts/webkitpy/tool/commands/
Dopenbugs_unittest.py45 for expectation in self.find_bugs_in_string_expectations:
46 self.assertEquals(openbugs._find_bugs_in_string(expectation[0]), expectation[1])
/external/android-mock/src/com/google/android/testing/mocking/
DAndroidMock.java1509 public static boolean not(boolean expectation) { in not() argument
1510 return EasyMock.not(expectation); in not()
1534 public static byte not(byte expectation) { in not() argument
1535 return EasyMock.not(expectation); in not()
1558 public static char not(char expectation) { in not() argument
1559 return EasyMock.not(expectation); in not()
1583 public static double not(double expectation) { in not() argument
1584 return EasyMock.not(expectation); in not()
1608 public static float not(float expectation) { in not() argument
1609 return EasyMock.not(expectation); in not()
[all …]
/external/chromium/net/data/proxy_resolver_v8_unittest/
Dbindings.js13 function expectEquals(expectation, actual) { argument
14 if (!(expectation === actual)) {
15 throw "FAIL: expected: " + expectation + ", actual: " + actual;
Dpac_library_unittest.js290 TestContext.prototype.expectEquals = function(expectation, actual) { argument
291 if (!(expectation === actual)) {
293 this.log("FAIL: expected: " + expectation + ", actual: " + actual);
/external/chromium/testing/gmock/test/
Dgmock_output_test_golden.txt36 Google Mock tried the following 1 expectation, but it didn't match:
49 Google Mock tried the following 1 expectation, but it didn't match:
95 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(_, _))...
96 Expected: the expectation is active
100 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(0, 0))...
116 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))...
121 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))...
137 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))...
142 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))...
174 Google Mock tried the following 1 expectation, but it didn't match:
[all …]
/external/v8/test/preparser/
Dduplicate-parameter.pyt37 expectation = "strict_param_dupe"
40 Template(name, '"use strict";\n' + source)(non_selfstrict, expectation)
43 non_selfstrict, expectation)
46 source +'\n }\n}\n')(non_selfstrict, expectation)
56 selftest(selfstrict, expectation)
57 selftest(selfstrictnestedclean, expectation)
Dtestcfg.py101 def Test(name, source, expectation): argument
103 if (expectation is not None):
104 throws = [expectation]
112 def MkTest(replacement, expectation): argument
118 Test(testname, testsource, expectation)
Dstrict-identifiers.pyt74 def MakeTests(replacement, expectation):
75 Template(name, '"use strict";\n' + source)(replacement, expectation)
78 replacement, expectation)
81 source +'\n }\n}\n')(replacement, expectation)
Dduplicate-property.pyt38 def StrictTest(name, source, replacement, expectation):
41 "\"use strict\";\n" + source)(replacement, expectation)
42 Template(name, source)(replacement, expectation)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
Dtest_expectations.py138 for expectation in expectations:
139 retval.append(self.expectation_to_string(expectation))
143 def expectation_to_string(self, expectation): argument
146 if item[1] == expectation:
148 raise ValueError(expectation)
403 def get_test_set(self, modifier, expectation=None, include_skips=True): argument
404 if expectation is None:
407 tests = (self._expectation_to_tests[expectation] &
411 tests = tests - self.get_test_set(SKIP, expectation)
538 expectation = self.EXPECTATIONS[part]
[all …]
Dresult_summary.py62 for expectation in TestExpectationsFile.EXPECTATIONS.values():
63 self.tests_by_expectation[expectation] = set()
/external/chromium/chrome/browser/password_manager/
Dpassword_store_mac_unittest.cc199 PasswordFormData* expectation = expectations[i]; in CheckFormsAgainstExpectations() local
200 EXPECT_EQ(expectation->scheme, form->scheme) << test_label; in CheckFormsAgainstExpectations()
201 EXPECT_EQ(std::string(expectation->signon_realm), form->signon_realm) in CheckFormsAgainstExpectations()
203 EXPECT_EQ(GURL(expectation->origin), form->origin) << test_label; in CheckFormsAgainstExpectations()
204 EXPECT_EQ(GURL(expectation->action), form->action) << test_label; in CheckFormsAgainstExpectations()
205 EXPECT_EQ(WideToUTF16(expectation->submit_element), form->submit_element) in CheckFormsAgainstExpectations()
207 EXPECT_EQ(WideToUTF16(expectation->username_element), in CheckFormsAgainstExpectations()
209 EXPECT_EQ(WideToUTF16(expectation->password_element), in CheckFormsAgainstExpectations()
211 if (expectation->username_value) { in CheckFormsAgainstExpectations()
212 EXPECT_EQ(WideToUTF16(expectation->username_value), in CheckFormsAgainstExpectations()
[all …]
/external/chromium/net/proxy/
Dproxy_config_unittest.cc13 void ExpectProxyServerEquals(const char* expectation, in ExpectProxyServerEquals() argument
15 if (expectation == NULL) { in ExpectProxyServerEquals()
18 EXPECT_EQ(expectation, proxy_server.ToURI()); in ExpectProxyServerEquals()
/external/chromium/testing/gmock/include/gmock/
Dgmock-spec-builders.h613 void AddExpectation(const Expectation& expectation) const;
1512 TypedExpectation<F>* const expectation = in AddNewExpectation() local
1514 const linked_ptr<ExpectationBase> untyped_expectation(expectation); in AddNewExpectation()
1523 return *expectation; in AddNewExpectation()
1656 TypedExpectation<F>* const expectation = in PrintTriedExpectationsLocked() local
1659 expectation->DescribeLocationTo(why); in PrintTriedExpectationsLocked()
1663 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked()
1664 expectation->ExplainMatchResultTo(args, why); in PrintTriedExpectationsLocked()
1665 expectation->DescribeCallCountTo(why); in PrintTriedExpectationsLocked()
/external/chromium/testing/gmock/src/
Dgmock-spec-builders.cc768 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation()
769 if (*last_expectation_ != expectation) { in AddExpectation()
771 expectation.expectation_base()->immediate_prerequisites_ in AddExpectation()
774 *last_expectation_ = expectation; in AddExpectation()
/external/v8/test/es5conform/
DREADME14 have to update the test expectation file.
/external/v8/test/test262/
DREADME16 have to update the test expectation file.
Dtest262.status50 # expectation values by far deviates from the actual result given by an
/external/chromium/chrome/browser/download/
Ddownload_browsertest.cc506 SelectExpectation expectation, in DownloadAndWaitWithDisposition() argument
520 if (expectation != EXPECT_NOTHING) { in DownloadAndWaitWithDisposition()
521 EXPECT_EQ(expectation == EXPECT_SELECT_DIALOG, in DownloadAndWaitWithDisposition()
529 SelectExpectation expectation) { in DownloadAndWait() argument
534 expectation, in DownloadAndWait()
/external/iptables/extensions/
Dlibxt_CT.man20 Only generate the specified expectation events for this connection.
/external/chromium/chrome/browser/accessibility/
Daccessibility_mac_uitest.mm32 // This is a order sensitive expectation.
/external/chromium/testing/gmock/
DCHANGES60 * New feature: the .After() clause for specifying expectation order.
/external/openfst/src/include/
DMakefile.am62 fst/sparse-tuple-weight.h fst/sparse-power-weight.h fst/expectation-weight.h \
/external/chromium/chrome/browser/ui/cocoa/
Dcocoa_test_helper.mm156 // NOTE(shess): Failing this expectation means that the test
/external/mesa3d/docs/
DMESA_texture_signed_rgba.spec162 expectation is clearly that this extension would be co-implemented

12