Skip to content
Learnearn.uk » IB Computer Science » Methods of Testing

Methods of Testing

Dry-Run

Dry Run Testing

This is where the programmer walks through the code, either on paper or on screen, to see if they can spot any errors. Usually this involves tracing the value of variables (either mentally or using a trace table) to see if they can find a particular bug. The process might also happen as a check before running the code, especially if the code is writing data to an external file or database.

Dry run testing is performed throughout the software development process, as and when required, and is usually not specified within the testing plan.

 

Walkthrough

WhiteBox

BlackBox

Unit

Integration

Alpha

Beta

Acceptance

Stub

Resources