7091266045
Bug: Change-Id: Ia0bfee80bf788a6eda83813fc986182a0d56a648 Reviewed-on: https://dart-review.googlesource.com/9980 Commit-Queue: Jakob Roland Andersen <jakobr@google.com> Reviewed-by: Florian Loitsch <floitsch@google.com>
47 lines
1.3 KiB
Dart
47 lines
1.3 KiB
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'dart:html';
|
|
|
|
import 'package:expect/minitest.dart';
|
|
|
|
main() {
|
|
group('supported_media', () {
|
|
test('supported', () {
|
|
expect(MediaStream.supported, true);
|
|
});
|
|
});
|
|
|
|
group('supported_MediaStreamEvent', () {
|
|
test('supported', () {
|
|
expect(MediaStreamEvent.supported, true);
|
|
});
|
|
});
|
|
|
|
group('supported_MediaStreamTrackEvent', () {
|
|
test('supported', () {
|
|
expect(MediaStreamTrackEvent.supported, true);
|
|
});
|
|
});
|
|
|
|
group('constructors', () {
|
|
test('MediaStreamEvent', () {
|
|
var expectation = MediaStreamEvent.supported ? returnsNormally : throws;
|
|
expect(() {
|
|
var event = new Event.eventType('MediaStreamEvent', 'media');
|
|
expect(event is MediaStreamEvent, isTrue);
|
|
}, expectation);
|
|
});
|
|
|
|
test('MediaStreamTrackEvent', () {
|
|
var expectation =
|
|
MediaStreamTrackEvent.supported ? returnsNormally : throws;
|
|
expect(() {
|
|
var event = new Event.eventType('MediaStreamTrackEvent', 'media');
|
|
expect(event is MediaStreamTrackEvent, isTrue);
|
|
}, expectation);
|
|
});
|
|
});
|
|
}
|