HomeSort by relevance Sort by last modified time
    Searched defs:expectations (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase_unittest.cc 78 std::map<std::string, std::string> expectations; local
79 expectations[MetadataParser::kPropertyFilesize] = test_file_size();
80 expectations[MetadataParser::kPropertyTitle] = test_file_str();
88 ASSERT_TRUE(expectations.find(key) != expectations.end());
89 EXPECT_EQ(expectations[key], value);
91 expectations.erase(key);
96 EXPECT_TRUE(expectations.empty());
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 78 private static final Map<String, Map<String, byte[]>> EXPECTATIONS
82 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm); local
83 if (expectations == null) {
84 expectations = new HashMap<String, byte[]>();
85 EXPECTATIONS.put(algorithm, expectations);
87 expectations.put(inputName, expected);
91 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm) local
    [all...]
  /cts/tools/utils/
CollectAllTests.java 173 ExpectationStore[] expectations = new ExpectationStore[] { local
217 addToTests(expectations, testCases, klass.asSubclass(TestCase.class));
227 addToTests(expectations, testCases, klass.asSubclass(TestCase.class));
374 private static void addToTests(ExpectationStore[] expectations,
399 addToTests(expectations, testCases, test, testName);
405 private static void addToTests(ExpectationStore[] expectations,
425 } else if (VogarUtils.isVogarKnownFailure(expectations,
  /external/webkit/Source/WebKit/chromium/src/js/
Tests.js 447 var expectations = {
457 this.assertEquals(expectations.functionsOnStack[0], callFrame.functionName);
459 this._checkSourceFrameWhenLoaded(expectations, function() {
710 * Checks current execution line against expectations.
750 * Waits for script pause, checks expectations, and invokes the callback.
751 * @param {Object} expectations Dictionary of expectations
754 TestSuite.prototype._waitForScriptPause = function(expectations, callback)
767 test.assertEquals(expectations.functionsOnStack.join(","), functionsOnStack.join(","), "Unexpected stack.");
771 test._checkSourceFrameWhenLoaded(expectations, callback)
    [all...]

Completed in 1814 milliseconds