... |
... |
@@ -3,9 +3,16 @@ |
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 |
|
-(% 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. |
|
6 |
+=== === |
8 |
8 |
|
|
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 |
+ |
9 |
9 |
=== Benefits of Testing === |
10 |
10 |
|
11 |
11 |
* **Quality Assurance** |
... |
... |
@@ -18,6 +18,8 @@ |
18 |
18 |
** 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 |
19 |
** 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 |
20 |
|
|
28 |
+=== === |
|
29 |
+ |
21 |
21 |
=== What should be tested? === |
22 |
22 |
|
23 |
23 |
(% style="text-align: justify;" %) |