Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(848)

Side by Side Diff: test/browser/language_tests.js

Issue 2158173003: fix #603, support mock objects (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: add test Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pubspec.lock ('k') | test/codegen/language/no_such_method_mock_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 (function() { 5 (function() {
6 'use strict'; 6 'use strict';
7 7
8 let dart_sdk = dart_library.import('dart_sdk'); 8 let dart_sdk = dart_library.import('dart_sdk');
9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []);
10 let async_helper = dart_library.import('async_helper').async_helper; 10 let async_helper = dart_library.import('async_helper').async_helper;
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'mixin_mixin_test': skip_fail, 252 'mixin_mixin_test': skip_fail,
253 'mixin_regress_13688_test': skip_fail, 253 'mixin_regress_13688_test': skip_fail,
254 'mixin_type_parameter1_test': skip_fail, 254 'mixin_type_parameter1_test': skip_fail,
255 'mixin_type_parameter2_test': skip_fail, 255 'mixin_type_parameter2_test': skip_fail,
256 'mixin_type_parameter3_test': skip_fail, 256 'mixin_type_parameter3_test': skip_fail,
257 'modulo_test': fail, 257 'modulo_test': fail,
258 'named_parameter_clash_test': skip_fail, 258 'named_parameter_clash_test': skip_fail,
259 'nan_identical_test': skip_fail, 259 'nan_identical_test': skip_fail,
260 'nested_switch_label_test': skip_fail, 260 'nested_switch_label_test': skip_fail,
261 'no_such_method_empty_selector_test': fail, 261 'no_such_method_empty_selector_test': fail,
262 'no_such_method_subtype_test': fail,
263 'number_identifier_test_05_multi': skip_fail, 262 'number_identifier_test_05_multi': skip_fail,
264 'number_identity2_test': skip_fail, 263 'number_identity2_test': skip_fail,
265 'numbers_test': skip_fail, 264 'numbers_test': skip_fail,
266 'optimized_hoisting_checked_mode_assert_test': skip_fail, 265 'optimized_hoisting_checked_mode_assert_test': skip_fail,
267 'redirecting_factory_reflection_test': skip_fail, 266 'redirecting_factory_reflection_test': skip_fail,
268 'regress_13462_0_test': skip_fail, 267 'regress_13462_0_test': skip_fail,
269 'regress_13462_1_test': skip_fail, 268 'regress_13462_1_test': skip_fail,
270 'regress_14105_test': skip_fail, 269 'regress_14105_test': skip_fail,
271 'regress_16640_test': skip_fail, 270 'regress_16640_test': skip_fail,
272 'regress_18535_test': skip_fail, 271 'regress_18535_test': skip_fail,
(...skipping 2632 matching lines...) Expand 10 before | Expand all | Expand 10 after
2905 2904
2906 for (let action of unittest_tests) { 2905 for (let action of unittest_tests) {
2907 try { 2906 try {
2908 action(); 2907 action();
2909 } catch (e) { 2908 } catch (e) {
2910 console.error("Caught error tying to setup test:", e); 2909 console.error("Caught error tying to setup test:", e);
2911 } 2910 }
2912 } 2911 }
2913 }); 2912 });
2914 })(); 2913 })();
OLDNEW
« no previous file with comments | « pubspec.lock ('k') | test/codegen/language/no_such_method_mock_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698