mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-22 13:13:05 +02:00
Add new Templating section.
This commit is contained in:
13
_posts/11-01-01-Testing.md
Normal file
13
_posts/11-01-01-Testing.md
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
anchor: testing
|
||||
---
|
||||
|
||||
# Testing {#testing_title}
|
||||
|
||||
Writing automated tests for your PHP code is considered a best practice and can lead to well-built
|
||||
applications. Automated tests are a great tool for making sure your application
|
||||
does not break when you are making changes or adding new functionality and should not be ignored.
|
||||
|
||||
There are several different types of testing tools (or frameworks) available for PHP, which use
|
||||
different approaches - all of which are trying to avoid manual testing and the need for large
|
||||
Quality Assurance teams, just to make sure recent changes didn't break existing functionality.
|
Reference in New Issue
Block a user