... |
... |
@@ -22,7 +22,7 @@ |
22 |
22 |
(% style="text-align: justify;" %) |
23 |
23 |
Every functionality you expect the software to provide at any moment. You should test: |
24 |
24 |
|
25 |
|
-* **High-level business use cases** defined by the customer in project requirements. Tests are essentially requirements translated into code. And customer requirements are typically translated into [[Acceptance Test>>doc:Software Engineering.Agile.Extreme Programming.Acceptance Tests.WebHome]]. |
|
25 |
+* **High-level business use cases** defined by the customer in project requirements. Tests are essentially requirements translated into code. And customer requirements are typically translated into [[Acceptance Tests>>doc:Software Engineering.Agile.Extreme Programming.Acceptance Tests.WebHome]]. |
26 |
26 |
* **Lower-level technical use cases** derived from high-level business use cases that are not directly visible to end users, but form the backbone of software functionality. This includes the expected behavior of the underlying components, modules and units. |
27 |
27 |
* **Border cases** that could theoretically occur, such as maximum/minimum values, nulls, invalid input outside the permissible value range, zeroes, negative numbers, empty lists, values with special meaning, exceptions, etc. |
28 |
28 |
* If needed: |
... |
... |
@@ -31,6 +31,8 @@ |
31 |
31 |
** **Load requirements**, when software is expected to handle a certain number of requests per second. |
32 |
32 |
* At any level of abstraction, you should always test **happy path** requirements, where everything works as expected, and **unhappy path** requirements, where something goes wrong or an unusual input is provided. Writing tests for the latter makes the software robust against failures and misuse. |
33 |
33 |
|
34 |
|
-=== Related Topics === |
|
34 |
+=== Table of Contents === |
35 |
35 |
|
36 |
|
-See also the articles on and . |
|
36 |
+{{children/}} |
|
37 |
+ |
|
38 |
+ |