feedback_tester.dart 1.15 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12
// 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';

/// Tracks how often feedback has been requested since its instantiation.
///
/// It replaces the MockMethodCallHandler of [SystemChannels.platform] and
/// cannot be used in combination with other classes that do the same.
class FeedbackTester {
  FeedbackTester() {
13
    SystemChannels.platform.setMockMethodCallHandler((MethodCall methodCall) async {
Ian Hickson's avatar
Ian Hickson committed
14
      if (methodCall.method == 'HapticFeedback.vibrate')
15
        _hapticCount++;
Ian Hickson's avatar
Ian Hickson committed
16
      if (methodCall.method == 'SystemSound.play' &&
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
          methodCall.arguments == SystemSoundType.click.toString())
        _clickSoundCount++;
    });
  }

  /// Number of times haptic feedback was requested (vibration).
  int get hapticCount => _hapticCount;
  int _hapticCount = 0;

  /// Number of times the click sound was requested to play.
  int get clickSoundCount => _clickSoundCount;
  int _clickSoundCount = 0;

  /// Stops tracking.
  void dispose() {
    SystemChannels.platform.setMockMethodCallHandler(null);
  }
34
}