OLD | NEW |
1 library AudioElementTest; | 1 library AudioElementTest; |
2 import '../../pkg/unittest/lib/unittest.dart'; | 2 import '../../pkg/unittest/lib/unittest.dart'; |
3 import '../../pkg/unittest/lib/html_config.dart'; | 3 import '../../pkg/unittest/lib/html_config.dart'; |
| 4 import 'dart:audio'; |
4 import 'dart:html'; | 5 import 'dart:html'; |
5 | 6 |
6 main() { | 7 main() { |
7 | 8 |
8 useHtmlConfiguration(); | 9 useHtmlConfiguration(); |
9 | 10 |
10 var isAudioElement = | 11 var isAudioElement = |
11 predicate((x) => x is AudioElement, 'is an AudioElement'); | 12 predicate((x) => x is AudioElement, 'is an AudioElement'); |
12 | 13 |
13 test('constructorTest1', () { | 14 test('constructorTest1', () { |
14 var audio = new AudioElement(); // would be new Audio() in JS | 15 var audio = new AudioElement(); // would be new Audio() in JS |
15 expect(audio, isNotNull); | 16 expect(audio, isNotNull); |
16 expect(audio, isAudioElement); | 17 expect(audio, isAudioElement); |
17 }); | 18 }); |
18 | 19 |
19 test('constructorTest2', () { | 20 test('constructorTest2', () { |
20 var audio = new AudioElement('hahaURL'); | 21 var audio = new AudioElement('hahaURL'); |
21 expect(audio, isNotNull); | 22 expect(audio, isNotNull); |
22 expect(audio, isAudioElement); | 23 expect(audio, isAudioElement); |
23 expect(audio.src.indexOf('hahaURL'), greaterThanOrEqualTo(0)); | 24 expect(audio.src.indexOf('hahaURL'), greaterThanOrEqualTo(0)); |
24 }); | 25 }); |
25 } | 26 } |
OLD | NEW |