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

Unified Diff: runtime/observatory/tests/observatory_ui/library_ref/element_test.dart

Issue 2211603002: Centralized event streams (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merged with master Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/observatory_ui/library_ref/element_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/library_ref/element_test.dart b/runtime/observatory/tests/observatory_ui/library_ref/element_test.dart
index cb33f6b6e09647a69062ac90cf28c821d77e7ab0..48291b5edf16d79f6714847a31c0f59d9caed913 100644
--- a/runtime/observatory/tests/observatory_ui/library_ref/element_test.dart
+++ b/runtime/observatory/tests/observatory_ui/library_ref/element_test.dart
@@ -3,22 +3,22 @@
// BSD-style license that can be found in the LICENSE file.
import 'dart:html';
import 'package:unittest/unittest.dart';
-import 'package:observatory/mocks.dart';
import 'package:observatory/src/elements/library_ref.dart';
+import '../mocks.dart';
main(){
LibraryRefElement.tag.ensureRegistration();
- final IsolateRefMock isolate = new IsolateRefMock(id: 'i-id', name: 'i-name');
- final LibraryRefMock library = new LibraryRefMock(id: 'c-id', name: 'c-name');
+ const isolate = const IsolateRefMock(id: 'i-id', name: 'i-name');
+ const library = const LibraryRefMock(id: 'c-id', name: 'c-name');
test('instantiation', () {
- final LibraryRefElement e = new LibraryRefElement(isolate, library);
+ final e = new LibraryRefElement(isolate, library);
expect(e, isNotNull, reason: 'element correctly created');
expect(e.isolate, equals(isolate));
expect(e.library, equals(library));
});
test('elements created after attachment', () async {
- final LibraryRefElement e = new LibraryRefElement(isolate, library);
+ final e = new LibraryRefElement(isolate, library);
document.body.append(e);
await e.onRendered.first;
expect(e.children.length, isNonZero, reason: 'has elements');

Powered by Google App Engine
This is Rietveld 408576698