mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-07 09:25:03 +08:00
24 lines
702 B
Dart
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'));
|
|
});
|
|
}
|