forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for inherited_theme.0.dart (#149120)
Contributes to flutter/flutter#130459 It adds a test for - `examples/api/lib/widgets/inherited_theme/inherited_theme.0_test.dart`
- Loading branch information
1 parent
e553bbc
commit bc097c6
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
examples/api/test/widgets/inherited_theme/inherited_theme.0_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// 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/inherited_theme/inherited_theme.0.dart' | ||
as example; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
void main() { | ||
testWidgets('StreamBuilder listens to internal stream', (WidgetTester tester) async { | ||
await tester.pumpWidget( | ||
const example.InheritedThemeExampleApp(), | ||
); | ||
|
||
expect(find.byType(GestureDetector), findsOne); | ||
expect(find.text('Tap Here'), findsOne); | ||
|
||
final DefaultTextStyle bodyDefaultTextStyle = DefaultTextStyle.of(tester.element(find.text('Tap Here'))); | ||
expect(bodyDefaultTextStyle.style, const TextStyle(fontSize: 48, color: Colors.blue)); | ||
|
||
await tester.tap(find.text('Tap Here')); | ||
await tester.pumpAndSettle(); | ||
|
||
expect(find.text('Hello World'), findsOne); | ||
|
||
final DefaultTextStyle routeDefaultTextStyle = DefaultTextStyle.of(tester.element(find.text('Hello World'))); | ||
expect(routeDefaultTextStyle.style, const TextStyle(fontSize: 48, color: Colors.blue)); | ||
}); | ||
} |