HomeSort by relevance Sort by last modified time
    Searched refs:expectation (Results 1 - 23 of 23) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
openbugs_unittest.py 45 for expectation in self.find_bugs_in_string_expectations:
46 self.assertEquals(openbugs._find_bugs_in_string(expectation[0]), expectation[1])
  /cts/libs/vogar-expect/src/vogar/
AnnotatedOutcome.java 28 * with, if applicable, and the expectation for this test, so that result value information is
38 private final Expectation expectation; field in class:AnnotatedOutcome
47 AnnotatedOutcome(Outcome outcome, Expectation expectation,
53 this.expectation = expectation;
70 return outcome.getResultValue(expectation);
76 previousResultValues.add(previousOutcome.getResultValue(expectation));
100 return tagOutcome == null ? null : tagOutcome.getResultValue(expectation);
    [all...]
ExpectationStore.java 49 * <p>If an outcome matches both an outcome expectation and a failure
50 * expectation, the outcome expectation will be returned.
54 private final Map<String, Expectation> outcomes = new LinkedHashMap<String, Expectation>();
55 private final Map<String, Expectation> failures = new LinkedHashMap<String, Expectation>();
61 * returns a value for all names, even if no explicit expectation was set.
63 public Expectation get(String name) {
64 Expectation byName = getByNameOrPackage(name)
95 Expectation expectation = outcomes.get(name); local
191 Expectation expectation = new Expectation(result, pattern, tags, description, buganizerBug); local
    [all...]
Outcome.java 136 public ResultValue getResultValue(Expectation expectation) {
138 return expectation.matches(this) ? ResultValue.OK : ResultValue.FAIL;
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
result_summary.py 62 for expectation in TestExpectationsFile.EXPECTATIONS.values():
63 self.tests_by_expectation[expectation] = set()
test_expectations.py 43 # Test expectation and modifier constants.
47 # Test expectation file update action constants
138 for expectation in expectations:
139 retval.append(self.expectation_to_string(expectation))
143 def expectation_to_string(self, expectation):
144 """Return the uppercased string equivalent of a given expectation."""
146 if item[1] == expectation:
148 raise ValueError(expectation)
224 """Test expectation files consist of lines with specifications of what
348 # expectation in the regular expectations; the test might not b
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
bindings.js 13 function expectEquals(expectation, actual) {
14 if (!(expectation === actual)) {
15 throw "FAIL: expected: " + expectation + ", actual: " + actual;
pac_library_unittest.js 290 TestContext.prototype.expectEquals = function(expectation, actual) {
291 if (!(expectation === actual)) {
293 this.log("FAIL: expected: " + expectation + ", actual: " + actual);
  /external/v8/test/preparser/
testcfg.py 82 expects_file = join(self.root, 'preparser.expectation')
101 def Test(name, source, expectation):
103 if (expectation is not None):
104 throws = [expectation]
112 def MkTest(replacement, expectation):
118 Test(testname, testsource, expectation)
  /external/chromium/net/proxy/
proxy_config_unittest.cc 13 void ExpectProxyServerEquals(const char* expectation,
15 if (expectation == NULL) {
18 EXPECT_EQ(expectation, proxy_server.ToURI());
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 198 for (Map.Entry<String, byte[]> expectation : getExpectations(algorithm).entrySet()) {
199 String inputName = expectation.getKey();
200 byte[] expected = expectation.getValue();
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidMock.java 57 * The various expectation methods such as {@link #eq(boolean)}, {@link #and(boolean, boolean)},
58 * and {@link #leq(byte)} all have nonsense return values. Each of the expectation methods may only
65 * Similarly, the complex expectation methods ({@code #and}, {@code #or}, and {@code not}) take
67 * other than an expectation method is provided. E.g. {@code mockObject.doFoo(and(gt(5), lt(10));}
73 * expectation APIs is not made clear by the method signatures of these expectation methods. In
75 * expectation methods, and not just any random method that returns a {@literal byte} or even a
243 * Returns the expectation setter for the last expected invocation in the current thread.
244 * Expectation setters are used during the recording phase to specify what method calls
247 * or according to parameter expectation criteria. Some examples of parameter expectatio
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_mac_unittest.cc 199 PasswordFormData* expectation = expectations[i]; local
200 EXPECT_EQ(expectation->scheme, form->scheme) << test_label;
201 EXPECT_EQ(std::string(expectation->signon_realm), form->signon_realm)
203 EXPECT_EQ(GURL(expectation->origin), form->origin) << test_label;
204 EXPECT_EQ(GURL(expectation->action), form->action) << test_label;
205 EXPECT_EQ(WideToUTF16(expectation->submit_element), form->submit_element)
207 EXPECT_EQ(WideToUTF16(expectation->username_element),
209 EXPECT_EQ(WideToUTF16(expectation->password_element),
211 if (expectation->username_value) {
212 EXPECT_EQ(WideToUTF16(expectation->username_value)
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-spec-builders.h 45 // A user can use the EXPECT_CALL() macro to specify an expectation on
78 // An abstract handle of an expectation.
79 class Expectation;
81 // A set of expectation handles.
94 // Implements an expectation.
97 // Helper class for testing the Expectation class template.
112 // expectation gets picked. Therefore, we sequence all mock function
164 // Returns the expectation that matches the given function arguments
219 // Returns an Expectation object that references and co-owns exp,
220 // which must be an expectation on this mock function
    [all...]
  /external/chromium/testing/gmock/src/
gmock-spec-builders.cc 87 // Explicitly specifies the cardinality of this expectation. Used by
94 // Retires all pre-requisites of this expectation.
97 // We can take this short-cut as we never retire an expectation
112 // Returns true iff all pre-requisites of this expectation have been
126 // Adds unsatisfied pre-requisites of this expectation to 'result'.
149 // expectation has occurred.
160 // Describes the state of the expectation (e.g. is it satisfied?
332 // No expectation is set on this mock method - we have an
406 // In case the action deletes a piece of the expectation, we
421 // No expectation matches this call - reports a failure
    [all...]
  /external/openfst/src/include/fst/
fstlib.h 102 #include <fst/expectation-weight.h>
arc.h 28 #include <fst/expectation-weight.h>
275 // expectation weight over the first template arg weight type and the
  /external/chromium/chrome/browser/download/
download_browsertest.cc 497 // |expectation| indicates whether or not a Select File dialog should be
499 // If the dialog appears, the routine exits. The only effect |expectation|
506 SelectExpectation expectation,
520 if (expectation != EXPECT_NOTHING) {
521 EXPECT_EQ(expectation == EXPECT_SELECT_DIALOG,
529 SelectExpectation expectation) {
534 expectation,
    [all...]
  /external/openfst/src/test/
weight_test.cc 24 #include <fst/expectation-weight.h>
  /external/v8/test/mjsunit/
debug-references.js 56 // Process the request and check expectation.
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
error.rb 99 recognition process. These errors all typically concern an expectation built in
101 fit the expectation.
  /external/mesa3d/docs/
MESA_texture_signed_rgba.spec 162 expectation is clearly that this extension would be co-implemented
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 667 milliseconds