From 7f22bed206564f9e2f83363932249b51cf063d20 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 27 Sep 2023 01:00:00 +0100 Subject: [PATCH] daily-email: fix --- src/content/daily-email/2023-09-23.md | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/src/content/daily-email/2023-09-23.md b/src/content/daily-email/2023-09-23.md index ec49e5b79..87607398a 100644 --- a/src/content/daily-email/2023-09-23.md +++ b/src/content/daily-email/2023-09-23.md @@ -3,8 +3,25 @@ title: > Everyone tests their code, but not everyone writes automated tests pubDate: 2023-09-23 permalink: > - archive/2023/09/23/everyone-tests-their-code--but-not-everyone-writes-automated-tests -# tags: -# - a -# - b + archive/2023/09/23/not-everyone-writes-automated-tests +tags: + - software-development + - test-driven-development + - automated-testing --- + +Everyone tests their code. + +No one writes code and ships it to production before testing it works. + +It's just that most Developers test their code manually. + +They write the code, switch to a browser or terminal, and run it. + +It might be a quick task, such as reloading a page or executing a command, or it could be complex and time-consuming, such as filling in a long form and checking the results. + +In this case, automated testing is a good option. + +Instead of filling in the form, have the tests do it for you. + +It will be quicker and more reliable than doing it manually.