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
- Click New Project on the dashboard
- Fill in the project name, description, and select the target hardware platform
- Click Create
Your project is now ready to receive test cases.
3. Add Test Cases
- Open your project and navigate to Test Cases
- Click New Test Case
- Fill in:
- Title — a short, descriptive name
- Description — what the test verifies
- Expected Result — what a passing result looks like
- Category / Module — for organization
- 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).
- Go to Test Runs → New Run
- Select the test cases to include
- Set the firmware version / build identifier
- 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.