recognizer_test.dart 1.44 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
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/gestures.dart';

class TestGestureRecognizer extends GestureRecognizer {
9
  TestGestureRecognizer({ Object? debugOwner }) : super(debugOwner: debugOwner);
10

11
  @override
12
  String get debugDescription => 'debugDescription content';
13 14

  @override
15
  void addPointer(PointerDownEvent event) { }
16 17

  @override
18
  void acceptGesture(int pointer) { }
19 20

  @override
21
  void rejectGesture(int pointer) { }
22 23 24
}

void main() {
25
  test('GestureRecognizer smoketest', () {
26
    final TestGestureRecognizer recognizer = TestGestureRecognizer(debugOwner: 0);
27
    expect(recognizer, hasAGoodToStringDeep);
28
  });
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52

  test('OffsetPair', () {
    const OffsetPair offset1 = OffsetPair(
      local: Offset(10, 20),
      global: Offset(30, 40),
    );

    expect(offset1.local, const Offset(10, 20));
    expect(offset1.global, const Offset(30, 40));

    const OffsetPair offset2 = OffsetPair(
      local: Offset(50, 60),
      global: Offset(70, 80),
    );

    final OffsetPair sum = offset2 + offset1;
    expect(sum.local, const Offset(60, 80));
    expect(sum.global, const Offset(100, 120));

    final OffsetPair difference = offset2 - offset1;
    expect(difference.local, const Offset(40, 40));
    expect(difference.global, const Offset(40, 40));

  });
53
}