cupertino_text_field.0.dart 808 Bytes
Newer Older
1 2 3 4
// 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.

5
import 'package:flutter/cupertino.dart';
6 7 8 9 10 11
import 'package:flutter_api_samples/cupertino/text_field/cupertino_text_field.0.dart' as example;
import 'package:flutter_test/flutter_test.dart';

void main() {
  testWidgets('CupertinoTextField has initial text', (WidgetTester tester) async {
    await tester.pumpWidget(
12
      const example.CupertinoTextFieldApp(),
13 14
    );

15
    expect(find.byType(CupertinoTextField), findsOneWidget);
16
    expect(find.text('initial text'), findsOneWidget);
17 18 19 20 21

    await tester.enterText(find.byType(CupertinoTextField), 'new text');
    await tester.pump();

    expect(find.text('new text'), findsOneWidget);
22 23
  });
}