Test Class Sample: Difference between revisions
No edit summary |
No edit summary |
||
Line 63: | Line 63: | ||
===srTest Examples=== | ===srTest Examples=== | ||
These examples show to how to use the [[Test_Units#C.2B.2B_Test_Classes|stride::srTest]] base class for your test classes. When you publicly inherit from srTest, you get access to default testCase and testSuite members and their associated methods. | |||
====03_01_srTest_Simple==== | ====03_01_srTest_Simple==== | ||
Demonstrates the use of [[Test_Units#SetStatus|testCase.setStatus]] to set the status for test cases. | |||
====03_02_srTest_Dynamic==== | ====03_02_srTest_Dynamic==== | ||
Shows how to use [[Test_Units#AddSuite|testSuite.AddSuite]] and [[Test_Units#AddTest|testSuite.AddTest]] for dynamic suite and test case creation within the context of one test method. | |||
==Test Class Execution== | ==Test Class Execution== |
Revision as of 05:09, 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.
NOTE: each of the example test classes we provide is grouped in namespace corresponding to its top-level category (e.g. Basic or Runtime Services). This is something we have chosen to do for organizational purposes only -- it is not a general requirement that test classes be placed into namespaces.
Basic Examples
These examples cover the simplest, easiest way to code a STRIDE test class. These examples use simple POD return types to indicate status and do not annotate the tests with any rich information (such as comments).
01_01_Basic_Simple
Demonstrates passing and failing tests using the four primary POD types that we can infer status from (int, bool, short, and char).
01_02_Basic_Fixtures
Demonstrates the use of setup and teardown fixtures. The setup and teardown methods are called immediately before and after the execution of each test method, respectively.
01_03_Basic_Exceptions
Demonstrates how exceptions thrown from a test method are caught by our intercept module and noted in the results. Any exception that is caught by the harness is assumed to indicate failure.
01_04_Basic_Constructors
Demonstrates how test classes may have non-trivial constructors. These arguments can be passed using our ascript scripting model for test units.
Runtime Services Examples
These examples cover basic usage of our Runtime Test Services API (as declared in srtest.h).
02_01_RuntimeServices_Simple
Demonstrates the use of srTestCaseSetStatus to set status, srTestCaseAddComment to add a comment, and srTEST_ADD_COMMENT_WITH_LOCATION (a macro that includes line/file information with a comment).
02_02_RuntimeServices_Dynamic
Demonstrates the use of srTestSuiteAddSuite and srTestSuiteAddTest for dynamic suite and test creation in the context of a single test method.
02_03_RuntimeServices_Override
Shows how to use srTestCaseSetStatus to override the status that would otherwise be inferred from the return value.
02_04_RuntimeServices_VarComment
Demonstrates the use of printf style format strings with srTestCaseAddComment.
srTest Examples
These examples show to how to use the stride::srTest base class for your test classes. When you publicly inherit from srTest, you get access to default testCase and testSuite members and their associated methods.
03_01_srTest_Simple
Demonstrates the use of testCase.setStatus to set the status for test cases.
03_02_srTest_Dynamic
Shows how to use testSuite.AddSuite and testSuite.AddTest for dynamic suite and test case creation within the context of one test method.