Studio:Workspace Setup: Difference between revisions

From STRIDE Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
This article outlines the recommend standards for a Test Workspace organization. The [[WorkspaceSetup.pl]] utility script automatically sets up a workspace:
This article outlines the recommended organization for a Test Workspace. The [[WorkspaceSetup.pl]] utility script should be used to create the workspace. The command line script will automatically create a workspace with the passed in ''name'':  


   WorkspaceSetup.pl -w ''name''
   WorkspaceSetup.pl -w ''name''




The workspace created will be automatically setup with the following folders:
The auto-generated workspace will contain the following folders. For more [[WorkspaceSetup.pl | details]] refer to WorkspaceSetup.pl:


  <Scripts Files>
  <Scripts Files>
   [[#setup|setup]] ''-- relevant setup fixtures''
   [[#setup|setup]] ''-- relevant setup fixtures''
   [[#test|test]] ''-- test assets''
   [[#test|test]] ''-- test assets''
      [[#yourSuite1|your suite1]]
      [[#yourSuite2|your suite2]]
   [[#teardown|teardown]] ''-- relevant teardown fixtures''
   [[#teardown|teardown]] ''-- relevant teardown fixtures''
   [[#utility|utility]] ''-- utilities and libraries''
   [[#utility|utility]] ''-- utilities and libraries''
Test Suites and Test Cases shall be placed under the '''test''' folder.


[[Category:Project Organization]]
[[Category:Project Organization]]
[[Category:Practice]]
[[Category:Practice]]

Revision as of 15:43, 30 November 2008

This article outlines the recommended organization for a Test Workspace. The WorkspaceSetup.pl utility script should be used to create the workspace. The command line script will automatically create a workspace with the passed in name:

 WorkspaceSetup.pl -w name


The auto-generated workspace will contain the following folders. For more details refer to WorkspaceSetup.pl:

<Scripts Files>
  setup -- relevant setup fixtures
  test -- test assets
  teardown -- relevant teardown fixtures
  utility -- utilities and libraries

Test Suites and Test Cases shall be placed under the test folder.