書いてみる TODOアプリを想定してテストコードを書きます。 void main() { IntegrationTestWidgetsFlutterBinding.ensureInitialized(); group('group', () { testWidgets('start', (WidgetTester tester) async { app.main(); await tester.pumpAndSettle(); // 要素を確認する expect(find.byType(FloatingActionButton), findsWidgets); expect(find.text…