Skip to content

Commit

Permalink
Add test for inherited_theme.0.dart (#149120)
Browse files Browse the repository at this point in the history
Contributes to flutter/flutter#130459

It adds a test for
- `examples/api/lib/widgets/inherited_theme/inherited_theme.0_test.dart`
  • Loading branch information
ValentinVignal authored May 29, 2024
1 parent e553bbc commit bc097c6
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
1 change: 0 additions & 1 deletion dev/bots/check_code_samples.dart
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,6 @@ final Set<String> _knownMissingTests = <String>{
'examples/api/test/widgets/focus_manager/focus_node.unfocus.0_test.dart',
'examples/api/test/widgets/framework/build_owner.0_test.dart',
'examples/api/test/widgets/framework/error_widget.0_test.dart',
'examples/api/test/widgets/inherited_theme/inherited_theme.0_test.dart',
'examples/api/test/widgets/autofill/autofill_group.0_test.dart',
'examples/api/test/widgets/nested_scroll_view/nested_scroll_view_state.0_test.dart',
'examples/api/test/widgets/scroll_position/scroll_metrics_notification.0_test.dart',
Expand Down
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));
});
}

0 comments on commit bc097c6

Please sign in to comment.