Studio:Linking Test Plan with results: Difference between revisions

From STRIDE Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
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:
<code>
<nowiki>[URL label]</nowiki>
</code>
Enclose URL in square brackets to indicate a link, provide optional label separated by a space within the brackets.
* Linking Test Plan to Workspace '''Description'''
* Linking Test Plan to Workspace '''Description'''
    
    

Revision as of 01:10, 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.

  • 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]";