blob: 20a6d5adb2ec8a0bc22b077c9a0632cfb85d4e36 [file] [log] [blame]
// Copyright 2014 The Flutter 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/services.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
TestWidgetsFlutterBinding.ensureInitialized();
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'));
});
}