// 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 log = []; 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')); }); }