Test Class Sample: Difference between revisions
No edit summary |
|||
Line 17: | Line 17: | ||
==Sample Test Classes== | ==Sample Test Classes== | ||
Now that you have built the off-target simulator and run the test classes it contains, you can take time to peruse the test class source and the corresponding results that each produces. This section provides a brief description for each. | |||
===Basic Examples=== | ===Basic Examples=== | ||
====01_01_Basic_Simple==== | |||
====01_02_Basic_Fixtures==== | |||
====01_03_Basic_Exceptions==== | |||
====01_04_Basic_Constructors==== | |||
===Runtime Services Examples=== | ===Runtime Services Examples=== | ||
====02_01_RuntimeServices_Simple==== | |||
====02_02_RuntimeServices_Dynamic==== | |||
====02_03_RuntimeServices_Override==== | |||
====02_04_RuntimeServices_VarComment==== | |||
===srTest Examples=== | ===srTest Examples=== | ||
====03_01_srTest_Simple==== | |||
====03_02_srTest_Dynamic==== | |||
==Test Class Execution== | ==Test Class Execution== |
Revision as of 00:12, 19 July 2008
Introduction
The following content relates to the sample files and workspaces installed in %STRIDE_DIR%\Samples\TestUnits\TestClass. This sample consists of a Visual Studio workspace for building an off-target simulator, sample test class source code, and a STRIDE workspace for doing more advanced test class execution.
Getting Started
To begin, open the Visual Studio Solution file in the sample directory. This solution (and corresponding project) were created for Visual Studio 2005. If you have a later version of Visual Studio installed, you should be able to open this solution and it will be automatically upgraded if necessary. If you do not currently have any version of Visual Studio, we recommend that you install the current free (as in beer) version of Visual Studio Express.
Once you have successfully opened the solution, rebuild it. The build process has custom STRIDE build rules integrated and will produce a STRIDE database, intercept module source files, and an off-target simulator application that incorporates the test class source.
Once the build is complete, perform the following steps to run the test classes in the workspace:
- launch the off-target simulator, TestClass.exe. This will run in a standard console window.
- open a command prompt window and change to this sample's directory.
- at the command prompt, run the command TestUnitRun.pl -v. This will execute all of the test units in the workspace and open a browser to display the results.
- quit the TestClass.exe application by typing 'q' in its console window.
Sample Test Classes
Now that you have built the off-target simulator and run the test classes it contains, you can take time to peruse the test class source and the corresponding results that each produces. This section provides a brief description for each.