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

Side by Side Diff: runtime/bin/vmservice/observatory/test/vm_metrics_test.dart

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 | Annotate | Revision Log
OLDNEW
1 import 'package:observatory/service_io.dart'; 1 import 'package:observatory/service_io.dart';
2 import 'package:unittest/unittest.dart'; 2 import 'package:unittest/unittest.dart';
3 import 'test_helper.dart'; 3 import 'test_helper.dart';
4 4
5 import 'dart:profiler'; 5 import 'dart:profiler';
6 6
7 void script() { 7 void script() {
8 var counter = new Counter('a.b.c', 'description'); 8 var counter = new Counter('a.b.c', 'description');
9 Metrics.register(counter); 9 Metrics.register(counter);
10 counter.value = 1234.5; 10 counter.value = 1234.5;
(...skipping 19 matching lines...) Expand all
30 }), 30 }),
31 31
32 (Isolate isolate) => 32 (Isolate isolate) =>
33 isolate.get('metrics/vm/doesnotexist').then((DartError err) { 33 isolate.get('metrics/vm/doesnotexist').then((DartError err) {
34 expect(err is DartError, isTrue); 34 expect(err is DartError, isTrue);
35 }), 35 }),
36 36
37 ]; 37 ];
38 38
39 main(args) => runIsolateTests(args, tests, testeeBefore: script); 39 main(args) => runIsolateTests(args, tests, testeeBefore: script);
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/observatory/test/test_helper.dart ('k') | runtime/bin/vmservice/observatory/test/vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698