4283c3e41e
R=sigmund@google.com Review URL: https://codereview.chromium.org//231413003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@34890 260f80e4-7a28-3924-810f-c04153c831b5
15 lines
310 B
Dart
15 lines
310 B
Dart
library WindowEqualityTest;
|
|
import 'package:unittest/unittest.dart';
|
|
import 'package:unittest/html_config.dart';
|
|
import 'dart:html';
|
|
|
|
main() {
|
|
useHtmlConfiguration();
|
|
var obfuscated = null;
|
|
|
|
test('notNull', () {
|
|
expect(window, isNotNull);
|
|
expect(window, isNot(equals(obfuscated)));
|
|
});
|
|
}
|