blob: 15bba1ea7a05fd0541028a4e75b49a766d19dac8 [file] [log] [blame]
library AudioBufferSourceNodeTest;
import '../../pkg/unittest/lib/unittest.dart';
import '../../pkg/unittest/lib/html_individual_config.dart';
import 'dart:web_audio';
main() {
useHtmlIndividualConfiguration();
group('supported', () {
test('supported', () {
expect(AudioContext.supported, true);
});
});
group('functional', () {
test('createBuffer', () {
if(AudioContext.supported) {
var ctx = new AudioContext();
AudioBufferSourceNode node = ctx.createBufferSource();
expect(node is AudioBufferSourceNode, isTrue);
node.start(ctx.currentTime, 0, 2);
expect(node is AudioBufferSourceNode, isTrue);
}
});
});
}