TMCP038 search_tests filtered by tester_of

The user shall be able to filter tests by the requirement they validate and receive only tests that reference that requirement.

Is a test for
Automated in
Source

Source file: specs/mcp/test_11.yaml

Loaded from: speky_mcp

Initial state

The expected state is the final state of TMCP003 Initialize the MCP server

Procedure

Step 1

The client calls search_tests with tester_of RF03

{
  "id": 2,
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "search_tests",
    "arguments": {"tester_of": "RF03"}
  }
}

Step 2

Verify only T03 and T04 are returned as they both reference RF03

{
  "id": 2,
  "jsonrpc": "2.0",
  "result": {
    "structuredContent": {
      "tests": [
        {"category": "non-functional", "id": "T03", "short": "Create files"},
        {"category": "non-functional", "id": "T04", "short": "Yet another test"}
      ]
    }
  }
}