I offer full widget testing training for your team. Book a session to learn how to test your Flutter apps.
Christian Findlay is an independent Flutter developer working in Melbourne, Australia and working with .NET, Firebase, Google Cloud, and Microsoft Azure.
I offer full widget testing training for your team. Book a session to learn how to test your Flutter apps.
Search bars are often an essential UI component in a Flutter app. This blog post walks you through creating a search bar in Flutter and...
This article is part of a series I am writing about testing. It refers to an article I wrote on test isolation, which is important reading for...
This article is part of a series on testing that I am writing, and this series is part of an e-book on testing that I...
The Dart language allows us to implement and mock any class. That’s because Dart has implicit interfaces, which is great for testing. However, some libraries...
Automated testing in flutter is easy. The flutter team built it into the framework from the ground up. They call it integration testing, but non-flutter developers...
Mutation testing is a technique for measuring the quality of your tests.
xUnit has a quirky system for consuming test data. Strongly typed test data can be specified with the MemberData attribute and the Theory attribute but...