You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,7 +29,7 @@ In this demo project there is a C library (could also be C++ etc). The library
29
29
There are many different phases of testing. Here are a few areas but phrased as questions.
30
30
31
31
Common Testing "Questions" about a project:
32
-
* Does it run as intended? (is it funcitonally correct, does it do what its supposed to do?)
32
+
* Does it run as intended? (is it functionally correct / does it do what its supposed to do?)
33
33
* Does it have side effects when running? (are resources tied up such as ports blocked, thread contention? Are other programs or services affected unintentionally?)
34
34
* Are all the possible permutations of execution tested? (code coverage, Is every piece of code - every if-then statement etc tested?)
35
35
* How much memory or resources are used? (is memmory efficiently used? Is memory freed correctly after use? When the program is complete does it leave things intact?)
0 commit comments