Files
flutter-go/packages/flutter_web/test/services/system_sound_test.dart
2019-08-13 20:38:46 +08:00

24 lines
702 B
Dart

// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_web/services.dart';
import 'package:flutter_web_test/flutter_web_test.dart';
void main() {
test('System sound control test', () async {
final List<MethodCall> log = <MethodCall>[];
SystemChannels.platform
.setMockMethodCallHandler((MethodCall methodCall) async {
log.add(methodCall);
});
await SystemSound.play(SystemSoundType.click);
expect(log, hasLength(1));
expect(log.single,
isMethodCall('SystemSound.play', arguments: 'SystemSoundType.click'));
});
}