blob: eb353e81a699fdc0f64abbdc09fe2da965f974a3 [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/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);
});
}