Difference between revisions of "Test Units Overview"

From STRIDE Wiki
Jump to: navigation, search
 
Line 1: Line 1:
* Item 1
+
==Introduction==
* Item 2
+
 
 +
STRIDE enables testing of C++ code through the use of xUnit style test classes. Test classes can be written by engineers, captured using an SCL pragma, and executed from the host. STRIDE facilitates the execution of some or all of the test classes by automatically creating entry points for the execution of test classes on the target.
 +
 
 +
==Using CPP Test Classes==
 +
 
 +
===Prerequisites===
 +
 
 +
The CPP Test class support only works in the 2.0.0802 version of STRIDE or later.  The host PC must also have a recent distribution of ActiveState perl installed.
 +
 
 +
===How to get started===

Revision as of 18:14, 19 June 2007

Introduction

STRIDE enables testing of C++ code through the use of xUnit style test classes. Test classes can be written by engineers, captured using an SCL pragma, and executed from the host. STRIDE facilitates the execution of some or all of the test classes by automatically creating entry points for the execution of test classes on the target.

Using CPP Test Classes

Prerequisites

The CPP Test class support only works in the 2.0.0802 version of STRIDE or later. The host PC must also have a recent distribution of ActiveState perl installed.

How to get started