Add daily emails and archive
This commit is contained in:
parent
7ec664a810
commit
e2b6832598
379 changed files with 11132 additions and 0 deletions
27
source/_daily_emails/2023-09-23.md
Normal file
27
source/_daily_emails/2023-09-23.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: >
|
||||
Everyone tests their code, but not everyone writes automated tests
|
||||
pubDate: 2023-09-23
|
||||
permalink: >-
|
||||
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.
|
Loading…
Add table
Add a link
Reference in a new issue