Test Runner (EN)
ToolA tool that executes tests, collects results, and presents them in a readable format
Architecture
flowchart LR A[Test files] --> B[Test Runner] B --> C[Test Framework] C --> D[Test environment] B --> E[Result storage] B --> F[Coverage Tool] B --> G[CI/CD Pipeline]
In Context
- Typically used together with test frameworks such as JUnit, pytest or Jasmine
- Related to: Continuous Integration, Test Automation, Test Coverage
- Example use: Running unit tests in a CI/CD process like Jenkins or GitHub Actions