mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
26 lines
881 B
Dart
26 lines
881 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/widgets/basic/physical_shape.0.dart' as example;
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('PhysicalShape is an ancestor of the text widget', (WidgetTester tester) async {
|
|
await tester.pumpWidget(
|
|
const MaterialApp(home: example.PhysicalShapeApp()),
|
|
);
|
|
|
|
final PhysicalShape physicalShape = tester.widget<PhysicalShape>(
|
|
find.ancestor(
|
|
of:find.text('Hello, World!'),
|
|
matching: find.byType(PhysicalShape),
|
|
),
|
|
);
|
|
expect(physicalShape.clipper, isNotNull);
|
|
expect(physicalShape.color, Colors.orange);
|
|
expect(physicalShape.elevation, 5.0);
|
|
});
|
|
}
|