FlutterGameDev

FlutterGameDev

Follow
Follow
homeAbout
Series

Introduction to TDD

Learn how to apply Test Driven Development in Dart.

Articles in this series

What is Test Driven Development?

Jun 15, 20225 min read

Test Driven Development, or TDD, is a software development method where one writes the tests before the implementation. You could say that the test...

What is Test Driven Development?

Preparing for development

Jun 26, 20222 min read

Whenever I start a new project I like to really think about what it is I'm going to be building. In this article I will show you what that process...

Preparing for development

Defining a public API for your Dart package

Jun 27, 202210 min read

When building a Dart package you'll have to think about which information and functionality you want to expose to the consumer. You don't want to...

Defining a public API for your Dart package

Writing your first test in Dart

Jul 6, 20226 min read

Writing tests in Dart is super easy. Everything you need to get started you get right out of the box. Every Dart (and Flutter) project comes with an...

Writing your first test in Dart

Making classes testable

Aug 5, 202212 min read

Sometimes classes can be difficult to test. In this article I will show you a way to make classes testable. This article is the fifth in the...

Making classes testable

Using your dev skills for testing

Aug 18, 202213 min read

When writing tests in Dart, your programming skills can keep them maintainable and readable. This article is the sixth in the Introduction to TDD...

Using your dev skills for testing