... |
... |
@@ -3,16 +3,9 @@ |
3 |
3 |
(% style="text-align: justify;" %) |
4 |
4 |
The chapters presented here are a concise summary of more theoretical and high-level knowledge. It is recommended that you are familiar with writing very basic tests and mocks, and understand the concepts of polymorphism and [[dependency injection>>doc:Software Engineering.Architecture.Dependency Injection.WebHome]] before reading on. |
5 |
5 |
|
6 |
|
-=== === |
|
6 |
+(% style="text-align: justify;" %) |
|
7 |
+The **ultimate goal of testing** is to reduce costs and increase productivity. Development with testing is faster and safer than without. |
7 |
7 |
|
8 |
|
-=== General === |
9 |
|
- |
10 |
|
-* **Ultimate Goal** of testing: Reduce costs and increase productivity. Development with testing is faster and safer than without. |
11 |
|
-* **Definition 'Production Code':** Code that provides the functionalities of a system. |
12 |
|
-* **Definition 'Test Code':** Often referred to as "tests", it is written to verify the correct functionality of the production code. |
13 |
|
- |
14 |
|
-=== === |
15 |
|
- |
16 |
16 |
=== Benefits of Testing === |
17 |
17 |
|
18 |
18 |
* **Quality Assurance** |
... |
... |
@@ -22,11 +22,10 @@ |
22 |
22 |
* **Testable Design** |
23 |
23 |
** Writing tests automatically enforces design best practices, resulting in a 'testable design' and higher quality code. Good code and architecture are testable, and vice versa. |
24 |
24 |
* **Documentation** |
25 |
|
-** Tests serve as the most up-to-date form of code documentation, capturing the expected behavior of the production code in its current state or of a third-party library. |
26 |
|
-** Good tests are quick and easy to understand because they are written in an expressive language that developers speak fluently. In addition, the actual documentation is often simply skipped over. |
|
18 |
+** **Always Up To Date**: Tests serve as the most up-to-date form of code documentation, capturing the expected behavior of the production code in its current state or of a third-party library. |
|
19 |
+** **Code Is Best Documentation**: Good tests are quick and easy to understand because they are written in an expressive language that developers speak fluently. In addition, the actual documentation is often simply skipped over. |
|
20 |
+** **Behavior Is Easier Than Implementation**: Tests are a clearer representation of behavior than the implementation itself. Tests specify the input for a given code and assert the expected output, providing an intuitive understanding that's easier to grasp than the intricacies of production code. Simply put, what code does is easier to understand than how it does it. |
27 |
27 |
|
28 |
|
-=== === |
29 |
|
- |
30 |
30 |
=== What should be tested? === |
31 |
31 |
|
32 |
32 |
(% style="text-align: justify;" %) |