Studio:Linking Test Plan with results

From STRIDE Wiki
Revision as of 01:11, 6 December 2008 by Timd (talk | contribs)
Jump to navigation Jump to search

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