Skip to main content

Quick Start

Get started with TESTMETRIX in under 5 minutes.

1. Log In

Navigate to testmetrix.de and log in with your credentials.

If you don't have an account yet, contact your TESTMETRIX administrator to get an invitation.

2. Create a Project

  1. Click New Project on the dashboard
  2. Fill in the project name, description, and select the target hardware platform
  3. Click Create

Your project is now ready to receive test cases.

3. Add Test Cases

  1. Open your project and navigate to Test Cases
  2. Click New Test Case
  3. Fill in:
    • Title — a short, descriptive name
    • Description — what the test verifies
    • Expected Result — what a passing result looks like
    • Category / Module — for organization
  4. Click Save

4. Create a Test Run

A test run is an execution of a set of test cases at a specific point in time (e.g., for firmware version v1.2.3).

  1. Go to Test RunsNew Run
  2. Select the test cases to include
  3. Set the firmware version / build identifier
  4. Click Start Run

5. Record Results

For each test case in the run:

  • Mark as Pass, Fail, or Blocked
  • Add observations or attach screenshots
  • Link failing tests to defect tickets

6. View Coverage

Go to Coverage Reports to see:

  • Overall pass rate over time
  • Which modules have the most failures
  • Coverage trends across firmware versions

Automation via API

Skip manual result entry by uploading results programmatically:

curl -X POST https://testmetrix.de/api/test-results/ \
-H "Authorization: Token YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"run_id": 42,
"test_case_id": 7,
"status": "pass",
"duration_ms": 350
}'

See the full API Reference for all endpoints.