29 lines
1,021 B
Dart
29 lines
1,021 B
Dart
// 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/material.dart';
|
|
import 'package:flutter_api_samples/material/divider/divider.0.dart' as example;
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Horizontal Divider', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const example.DividerExampleApp());
|
|
|
|
expect(find.byType(Divider), findsOneWidget);
|
|
|
|
// Divider is positioned horizontally.
|
|
final Offset container = tester.getBottomLeft(
|
|
find
|
|
.descendant(
|
|
of: find.byType(example.DividerExample),
|
|
matching: find.byType(ColoredBox),
|
|
)
|
|
.first,
|
|
);
|
|
expect(container.dy, tester.getTopLeft(find.byType(Divider)).dy);
|
|
|
|
final Offset subheader = tester.getTopLeft(find.text('Subheader'));
|
|
expect(subheader.dy, tester.getBottomLeft(find.byType(Divider)).dy);
|
|
});
|
|
}
|