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