admin管理员组文章数量:1345295
I have 2 widgets
1 with an assert
in its build
method:
class MyWidget1 extends StatelessWidget {
const MyWidget1({super.key});
@override
Widget build(BuildContext context) {
assert(false);
return const Placeholder();
}
}
1 with an assert
in a callback of a button:
class MyWidget2 extends StatelessWidget {
const MyWidget2({super.key});
@override
Widget build(BuildContext context) {
return TextButton(
onPressed: () {
assert(false);
},
child: const Text('button'),
);
}
}
I want a test that verifies the assert
is thrown. From this question, I tried:
void main() {
testWidgets('It should throw an assert error during the build',
(WidgetTester tester) async {
await expectLater(
() => tester.pumpWidget(const MaterialApp(home: MyWidget1())),
throwsA(isA<AssertionError>()),
);
});
testWidgets('It should throw an assert error on tap',
(WidgetTester tester) async {
await tester.pumpWidget(const MaterialApp(
home: Scaffold(
body: MyWidget2(),
),
));
await expectLater(
() async {
await tester.tap(find.byType(TextButton));
await tester.pumpAndSettle();
},
throwsAssertionError,
);
});
}
But the errors are not caught by the expects.
How to test it?
I have 2 widgets
1 with an assert
in its build
method:
class MyWidget1 extends StatelessWidget {
const MyWidget1({super.key});
@override
Widget build(BuildContext context) {
assert(false);
return const Placeholder();
}
}
1 with an assert
in a callback of a button:
class MyWidget2 extends StatelessWidget {
const MyWidget2({super.key});
@override
Widget build(BuildContext context) {
return TextButton(
onPressed: () {
assert(false);
},
child: const Text('button'),
);
}
}
I want a test that verifies the assert
is thrown. From this question, I tried:
void main() {
testWidgets('It should throw an assert error during the build',
(WidgetTester tester) async {
await expectLater(
() => tester.pumpWidget(const MaterialApp(home: MyWidget1())),
throwsA(isA<AssertionError>()),
);
});
testWidgets('It should throw an assert error on tap',
(WidgetTester tester) async {
await tester.pumpWidget(const MaterialApp(
home: Scaffold(
body: MyWidget2(),
),
));
await expectLater(
() async {
await tester.tap(find.byType(TextButton));
await tester.pumpAndSettle();
},
throwsAssertionError,
);
});
}
But the errors are not caught by the expects.
How to test it?
Share Improve this question asked 16 hours ago Valentin VignalValentin Vignal 8,3584 gold badges41 silver badges95 bronze badges1 Answer
Reset to default 0You can use FlutterError.onError
for that:
void main() {
late FlutterExceptionHandler? oldFlutterError;
setUp(() {
oldFlutterError = FlutterError.onError;
});
tearDown(() {
FlutterError.onError = oldFlutterError;
});
testWidgets('It should throw an assert error during the build',
(WidgetTester tester) async {
final List<FlutterErrorDetails> errors = <FlutterErrorDetails>[];
FlutterError.onError = (FlutterErrorDetails details) {
errors.add(details);
};
await tester.pumpWidget(const MaterialApp(home: MyWidget1()));
expect(errors, hasLength(1));
expect(errors.single.exception, isAssertionError);
});
testWidgets('It should throw an assert error on tap',
(WidgetTester tester) async {
final List<FlutterErrorDetails> errors = <FlutterErrorDetails>[];
FlutterError.onError = (FlutterErrorDetails details) {
errors.add(details);
};
await tester.pumpWidget(const MaterialApp(
home: Scaffold(
body: MyWidget2(),
),
));
await tester.tap(find.byType(TextButton));
await tester.pump();
expect(errors, hasLength(1));
expect(errors.single.exception, isAssertionError);
});
}
本文标签: flutterHow to test assertions in build methods or in callbacksStack Overflow
版权声明:本文标题:flutter - How to test assertions in build methods or in callbacks? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758329a2533912.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论