From e289b59ebd3a59a078502102fb9a87503db905bb Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 15 Oct 2023 20:07:07 +0100 Subject: [PATCH] daily-email: add 2023-10-13 Writing tests is an investment --- src/content/daily-email/2023-10-13.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/content/daily-email/2023-10-13.md diff --git a/src/content/daily-email/2023-10-13.md b/src/content/daily-email/2023-10-13.md new file mode 100644 index 000000000..ecf4e45d0 --- /dev/null +++ b/src/content/daily-email/2023-10-13.md @@ -0,0 +1,17 @@ +--- +title: > + Writing tests is an investment +pubDate: 2023-10-13 +permalink: > + archive/2023/10/13/writing-tests-is-an-investment +tags: + - software-development + - automated-testing + - test-driven-development +--- + +It can take time to write automated tests and do test-driven development, but it is an investment in a project's future stability. + +Spending time to write tests upfront will save time as the project progresses, make the code easier to change, and result in better software, fewer bugs, and quicker changes. + +Even though it takes time, it's time well spent.