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

Side by Side Diff: runtime/observatory/tests/service/evaluate_in_frame_rpc_test.dart

Issue 1726773002: Refactor service tests in preparation of running on sky_shell (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
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 // VMOptions=--error_on_bad_type --error_on_bad_override 4 // VMOptions=--error_on_bad_type --error_on_bad_override
5 5
6 import 'dart:async';
7 import 'dart:developer'; 6 import 'dart:developer';
8 import 'package:observatory/service_io.dart'; 7 import 'package:observatory/service_io.dart';
9 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
9 import 'service_test_common.dart';
10 import 'test_helper.dart'; 10 import 'test_helper.dart';
11 11
12 void method(int value, _) { 12 void method(int value, _) {
13 debugger(); 13 debugger();
14 } 14 }
15 15
16 void testFunction() { 16 void testFunction() {
17 int i = 0; 17 int i = 0;
18 while (true) { 18 while (true) {
19 if (++i % 100000000 == 0) { 19 if (++i % 100000000 == 0) {
(...skipping 18 matching lines...) Expand all
38 result = await isolate.evalFrame(0, 'value + _'); 38 result = await isolate.evalFrame(0, 'value + _');
39 expect(result.valueAsString, equals('10050')); 39 expect(result.valueAsString, equals('10050'));
40 40
41 result = await isolate.evalFrame(1, 'i'); 41 result = await isolate.evalFrame(1, 'i');
42 expect(result.valueAsString, equals('100000000')); 42 expect(result.valueAsString, equals('100000000'));
43 }, 43 },
44 44
45 ]; 45 ];
46 46
47 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); 47 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction);
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/eval_test.dart ('k') | runtime/observatory/tests/service/get_allocation_samples_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698