TMCP033 test_plan_coverage filtered by category¶
Call test_plan_coverage with a category filter and verify only requirements from that category appear
Is a test for
Automated in
Source
Source file: specs/mcp/test_10.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 test_plan_coverage with category non-functional
{
"id": 2,
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "test_plan_coverage",
"arguments": {"category": "non-functional"}
}
}
Step 2¶
Verify only non-functional requirements appear:
RF04 in no_test_plan, RF03 in partially_manual_test_plan
{
"id": 2,
"jsonrpc": "2.0",
"result": {
"structuredContent": {
"no_test_plan": [
{"category": "non-functional", "id": "RF04"}
],
"manual_test_plan": [],
"partially_manual_test_plan": [
{"category": "non-functional", "id": "RF03", "short": "Number 3", "tags": ["foo", "bar:baz"]}
],
"automated_test_plan": []
}
}
}