Skip to main content
This page is under construction. More content coming soon!

Test Results Overview

OneTest provides comprehensive views of test execution results, trends, and analytics.

Result Views

Test Run Summary

High-level metrics for each test run:

Pass Rate

Percentage of passed tests

Total Tests

Number of tests executed

Duration

Total execution time

Status

In Progress, Completed, or Aborted
Status Breakdown:
  • Passed: Tests that passed all steps
  • Failed: Tests with one or more failed steps
  • ⏸️ Skipped: Tests that were skipped
  • 🚫 Blocked: Tests blocked by dependencies

Result Dashboards

Real-time view of active test runs:Widgets:
  • Progress bar (% complete)
  • Status pie chart (pass/fail/skip/blocked)
  • Test list with individual status
  • Assignee breakdown
  • Timeline view
  • Recent failures
Overall product quality metrics:Metrics:
  • Pass rate over time (line chart)
  • Test execution velocity
  • Defect trends
  • Coverage by priority
  • Risk areas (low-coverage high-priority features)
Team productivity and workload:Insights:
  • Tests executed per person
  • Execution time by team member
  • Test creation velocity
  • Review backlog
  • Assigned vs completed tests
Quality per build/release:Track:
  • Pass rate by build
  • New failures introduced
  • Regression detection
  • Build quality trends
  • Release readiness

Filtering & Sorting Results

Use powerful filters to find what matters:
status = failed AND execution_date >= -7d
ORDER BY execution_date DESC

Exporting Results

Generate Reports

Create shareable reports:
  • Executive Summary: High-level metrics for stakeholders
  • Detailed Test Report: Complete execution details
  • Failure Analysis: Deep dive into failures
  • Trend Report: Historical quality trends
  • Coverage Report: Feature coverage analysis
Formats: PDF, Excel, HTML

Understanding Metrics

Formula: (Passed Tests / Total Tests) × 100Interpretation:
  • ≥95%: Excellent quality
  • 90-94%: Good quality
  • 80-89%: Needs attention
  • <80%: Critical issues
Track pass rate trends, not just absolute values. A declining trend indicates growing technical debt.
Tests that pass sometimes and fail other times without code changes.Detection: Tests with:
  • Pass rate between 20% and 80%
  • At least 5 executions
  • No pattern to failures
Action: Fix or remove flaky tests—they erode confidence in your test suite.
Formula: Tests Executed / Time PeriodMeasures how quickly you’re validating changes. Higher velocity means faster feedback loops.
Percentage of features/requirements that have associated tests.Types:
  • Feature coverage: Features with tests
  • Requirement coverage: Requirements with tests
  • Priority coverage: P0/P1 features with tests
  • Execution coverage: Tests run in last N days

What’s Next?