Multiple choice technology testing

Which test activities are supported by test harness or unit test framework tools

  1. Test management and control

  2. Test specification and design

  3. Performance and monitoring

  4. Test Execution and logging

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Test harness and unit test framework tools primarily support test execution and logging. These tools automate running test cases, capture results, log execution details, and report pass/fail status. While some frameworks may have features for management (A), specification (B), or performance monitoring (C), their core function is executing tests and recording outcomes.

AI explanation

"Test Execution and logging" is correct — test harnesses and unit test frameworks (e.g., xUnit-style tools) are built specifically to execute test cases (often automatically) and log/record the results (pass/fail, assertions, stack traces). Test management and control, test specification and design, and performance/monitoring are all supported by other categories of tools (test management tools, test design/modeling tools, performance testing tools respectively) rather than by unit test/harness frameworks, whose core purpose is running tests and capturing outcomes.