• Tirth's avatar
    Write Tests for API Examples of `snack_bar.0`, `elevated_button.0`,... · a49ee534
    Tirth authored
    Write Tests for API Examples of `snack_bar.0`, `elevated_button.0`, `stepper.0`, `radio.0`, `filled_button.0`, `outlined_button.0` & `card.0` (#138987)
    
    Write Tests for API Examples of `snack_bar.0`, `elevated_button.0`, `stepper.0`, `radio.0`, `filled_button.0`, `outlined_button.0` & `card.0`
    
    Part of #130459
    Unverified
    a49ee534
elevated_button.0_test.dart 1.02 KB
// 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/elevated_button/elevated_button.0.dart' as example;
import 'package:flutter_test/flutter_test.dart';

void main() {
  testWidgets('ElevatedButton Smoke Test', (WidgetTester tester) async {
    await tester.pumpWidget(
      const example.ElevatedButtonExampleApp(),
    );

    expect(find.widgetWithText(AppBar, 'ElevatedButton Sample'), findsOneWidget);
    final Finder disabledButton = find.widgetWithText(ElevatedButton, 'Disabled');
    expect(disabledButton, findsOneWidget);
    expect(tester.widget<ElevatedButton>(disabledButton).onPressed.runtimeType, Null);
    final Finder enabledButton = find.widgetWithText(ElevatedButton, 'Enabled');
    expect(enabledButton, findsOneWidget);
    expect(tester.widget<ElevatedButton>(enabledButton).onPressed.runtimeType, VoidCallback);
  });
}