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

Unified Diff: tests/html/audioelement_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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: tests/html/audioelement_test.dart
diff --git a/tests/html/audioelement_test.dart b/tests/html/audioelement_test.dart
index 9957ff703e2fadacc2272e733b66be950d2f8d29..41d632626d7d93d85f836de1f78b5dab42567af4 100644
--- a/tests/html/audioelement_test.dart
+++ b/tests/html/audioelement_test.dart
@@ -1,4 +1,5 @@
library AudioElementTest;
+
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:html';
@@ -7,22 +8,22 @@ main() {
useHtmlConfiguration();
test('constructorTest1', () {
- var audio = new AudioElement();
- expect(audio, isNotNull);
- expect(audio is AudioElement, isTrue);
- });
+ var audio = new AudioElement();
+ expect(audio, isNotNull);
+ expect(audio is AudioElement, isTrue);
+ });
test('constructorTest2', () {
- var audio = new AudioElement('IntentionallyMissingFileURL');
- expect(audio, isNotNull);
- expect(audio is AudioElement, isTrue);
- expect(audio.src, contains('IntentionallyMissingFileURL'));
- });
+ var audio = new AudioElement('IntentionallyMissingFileURL');
+ expect(audio, isNotNull);
+ expect(audio is AudioElement, isTrue);
+ expect(audio.src, contains('IntentionallyMissingFileURL'));
+ });
test('canPlayTypeTest', () {
- var audio = new AudioElement();
- var canPlay = audio.canPlayType("audio/mp4");
- expect(canPlay, isNotNull);
- expect(canPlay is String, isTrue);
- });
+ var audio = new AudioElement();
+ var canPlay = audio.canPlayType("audio/mp4");
+ expect(canPlay, isNotNull);
+ expect(canPlay is String, isTrue);
+ });
}

Powered by Google App Engine
This is Rietveld 408576698