Studio:Linking Test Plan with results: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
Enclose URL in square brackets to indicate a link, provide optional label separated by a space within the brackets. | Enclose URL in square brackets to indicate a link, provide optional label separated by a space within the brackets. | ||
Put the link in each suite's Description field within the properties window. | |||
==Using a Script== | |||
* Linking Test Plan to Workspace '''Description''' | * Linking Test Plan to Workspace '''Description''' |
Revision as of 01:11, 6 December 2008
This article describes the standard method for adding a link to the test plan on a STRIDE report
Overview
It's very helpful to provide a link with each suite to the relevant test plan section.
Using STRIDE Studio
This is the preferred method.
Link formatting is just like wiki:
[URL label]
Enclose URL in square brackets to indicate a link, provide optional label separated by a space within the brackets.
Put the link in each suite's Description field within the properties window.
Using a Script
- Linking Test Plan to Workspace Description
ScriptFiles = studio.Workspace.Folders.Item("Script Files");
ScriptFiles.Description = "[http://www.example.com Test Plan]";
- Linking Test Spec to a Suite
Suite = testSuite.Suites.Add();
Suite.Description = "[http://www.example.com Test Spec]";