🌊Phases of System Testing

System testing examines every component of an application to make sure that they work as a complete and unified whole.

A QA team typically conducts system testing after it checks individual modules with functional or user story testing and then each component through integration testing.

Phases of System Testing

System testing examines the entire application as a whole to identify issues before release. A QA team typically performs system testing after:

• Functional, acceptance and unit testing of individual components

The main stages of system testing are:

  1. Setup test environment - A test server is configured to simulate production. This allows testers to run automated test cases in an isolated environment.

Testers setup:

• Test data • Test databases • Test users

  1. Create test cases - Test cases that cover all functional and non-functional requirements are created.

Testers write test cases to ensure:

• All features and flows are tested

• Edge cases are considered

• Various conditions are tested

  1. Generate test data - Representative test data is created to simulate real user inputs and scenarios.

Testers generate:

• Valid and invalid data

• Edge case data values

• Large and small data sets

  1. Execute test cases - The automated test cases are run to exercise all features and flows within the system. Issues are identified and logged.

Testers run:

• Integration tests

• Performance tests

• Security tests

• Regression tests

  1. Regression testing - Previously executed test cases are rerun to ensure no new issues were introduced. Any failures are investigated.

  2. Defect fixing - The development team fixes all logged defects and issues.

  3. Retesting - Once fixes are implemented, impacted test cases are rerun to verify the fix resolved the issue.

If system testing passes, the software proceeds to final acceptance testing. Throughout, testers monitor defect levels based on the application's quality standards.

Last updated