Difference between revisions of "Stride Overview"

From STRIDE Wiki
Jump to: navigation, search
 
(31 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
Stride™ is a test framework for writing C/C++ test cases executing on-device. Stride's unique host-target architecture allows easier and better On-Target/Device White-box testing. Software builds automatically become more testable; facilitating deeper code coverage opportunities.
+
'''Stride™''' is an [http://en.wikipedia.org/wiki/XUnit xUnit-style] test framework for C/C++ software comprised of an external test ''Runner'', ''Runtime'' source code library, and a set of ''Build Tools''. It was designed with a specific focus on enabling tests to be executed on a device using a fully functional build.<ref>Fully functional build means that the software works the same as before instrumentation, but now has built-in tests that can be invoked on-demand by the test ''Runner''.</ref>
 +
 
 +
Stride's unique host-target architecture allows easier and better On-Target/Device White-box testing. Software builds automatically become more testable; facilitating deeper code coverage opportunities.<ref>For more details refer to our [[Frequently Asked Questions About STRIDE | FAQ]].</ref>
 +
 
 +
Stride is also fully integrated with [http://www.testspace.com Testspace] for test content management.  
  
  
Line 7: Line 11:
  
 
==== Runner ====
 
==== Runner ====
Stride also contains a lightweight [[Stride_Runner | '''Runner''']] application that is a host-based command-line utility for interactive and automated test execution. It also integrates seamlessly with [http://www.testspace.com Testspace] for ''test content management''.
+
Stride includes a lightweight [[Stride_Runner | '''Runner''']] application that is a host-based command-line utility for interactive and automated test execution. It also integrates seamlessly with [http://www.testspace.com Testspace] for ''test content management''.
 
<br>
 
<br>
  
 
====Runtime====
 
====Runtime====
Stride includes a [[STRIDE Runtime | '''Runtime''']] software source package that supports connectivity with the host system. It is integrated with embedded application software to enable ''testability'' to be compiled into the software with minimal impact on performance or the size of the application. The software is agnostic to the RTOS, CPU, and transport. It can be configured to support multi-processes, multi-threads, user/kernel spaces, or a simpler single application process. Typically the runtime is configured as a background thread and only executes when running tests.
+
Stride also contains a [[STRIDE Runtime | '''Runtime''']] software source package. The Runtime enables ''testability'' by integrating with the software under test along with supporting connectivity with the host system, all with minimal impact on performance or code size. The software is agnostic to the RTOS, CPU, and host/device I/O transport. It supports simple ''single-process'' devices as well as ''multi-process'' and ''multi-threaded'' environments. It can be used with software running in either user or kernel mode, including drivers. Typically the Runtime is configured as a background thread and only executes when running tests.
  
==== Compiler ====
+
==== Build Tools ====
[[image:STRIDE 4.2 Framework-b.jpg |right|300px | border]]
+
[[image:STRIDE 4.2 Framework-b.jpg |right|250px | border]]
  
The [[STRIDE_Build_Tools | '''Stride compiler''']] (aka Build Tools) are a set of command-line utilities that integrate with your target software build process. They preprocess standard C/C++ header files that contain STRIDE test declarations to auto-generate source code comprising a custom [[Intercept_Module | '''Intercept Module''']]. The intercept module code is then built with the Stride Runtime to provide ''fixturing'' and ''harnessing'' test logic as part of your build image.
+
The Stride [[STRIDE_Build_Tools | '''Build Tools''']] are a set of command-line utilities that integrate with your target software build process. They preprocess standard C/C++ header files that contain Stride test declarations to auto-generate C/C++ source code comprising a custom [[Intercept_Module | '''Intercept Module''']]. The intercept module code is then included in your target software build along with the Stride Runtime to provide ''fixturing'' and ''harnessing'' test logic as part of your build image.
  
= Cross Platform =
+
== Cross Platform ==
 
Stride works on virtually any target platform. Stride's cross-platform framework facilitates a ''unified testing approach'' for all team members, enabling organizations to standardize on a test workflow that is independent of the target platform being used or what branch of software is being changed.
 
Stride works on virtually any target platform. Stride's cross-platform framework facilitates a ''unified testing approach'' for all team members, enabling organizations to standardize on a test workflow that is independent of the target platform being used or what branch of software is being changed.
  
=== Runtime written in standard C ===
+
==== Runtime Written in Standard C ====
The Stride Runtime is written in standard C on top of a simple [[Platform_Abstraction_Layer | '''platform abstraction layer''']] that enables it to work across platforms. It can be configured for a single process multi-threading environment or multiple process environments (i.e. Linux, Windows, Embedded RTOS, etc.). It is delivered as source code to be included in the application's build system. The transport between the host and target is configurable and supports Serial and TCP/IP by default. Custom transports are also available. The runtime has also been tailored specifically to embedded applications, overhead is minimal. It consumes very little memory for table and control block storage. Resource usage is configurable and can be tailored to the limitations of the target platform.
+
The Stride Runtime is written in standard ANSI C on top of a simple customizable [[Platform_Abstraction_Layer | '''platform abstraction layer''']] that enables it to work across platforms. It can be configured for a single process multi-threading environment or multiple process environments (i.e. Android, Linux, Windows, Embedded RTOS, etc.). It is delivered as source code to be included in the application's build system. The transport between the host and target is configurable and supports Serial and TCP/IP by default. Custom transports are also available.
 +
 
 +
The runtime has been tailored specifically for embedded applications; overhead is minimal. It consumes very little memory for table and control block storage. Resource usage is configurable and can be adjusted to conform to any limitations of the target platform.
 +
 
 +
==== Integrates With Your Existing Build System ====
 +
Stride auto-generates ''intercept module'' harnessing and remoting functionality as C or C++ source code during the make process, removing any dependencies on specific compilers and / or processors.
 +
 
 +
==== Supports Off-Target Testing ====
 +
Testing can also be simulated using a standard desktop computer (Windows, Linux, or FreeBSD) with no changes to test code. The Stride ''SDKs'' allow for a seamless transition between the real target and an Off-Target host environment.
 +
 
 +
== Rich set of Assertions ==
 +
Test cases are typically constructed leveraging a large set of available assertion macros. When failures occur, these macros automatically set test status and provide details to the test report such as file name, line number, and condition causing the failure. Stride provides a large set of these macros to validate a wide variety of scenarios.  
  
===Integrates With Your Existing Build System ===
+
<source  lang="cpp">
Stride also auto-generates ''intercept module'' used for harnessing and remote logic as source code during the make process, removing any dependencies on specific compilers and / or processors.
+
#include <mytest.h>
  
===Supports Off-Target Testing ===
+
void MyTest::CheckFoo() {
Testing can also be conducted using a standard desktop machine (Windows, Linux, or FreeBSD). The Stride ''SDKs'' allow for a seamless transition between the real target and an Off-Target host environment.
+
    .. 
 +
    srEXPECT_EQ(foo(2 + 2), 4);
 +
}
 +
void MyTest::CheckBoo() {
 +
    ..
 +
    srASSERT_GT(boo(3 * 3), 7);
 +
}
 +
</source>
  
= Extensive Parameter Support =
+
== Extensive Parameter Support ==
  
TBD
+
Parameterized testing is key to reducing test code duplication. Constructor arguments, name-value collection, and host file remoting are all supported. Stride provides an easy way for passing and accessing these types of parameters, allowing customization of test behavior at runtime.
  
= Provides built-in automation and reporting =
+
Create an INI-type of file (i.e. ''myinput.ini'')
Stride enables software builds to be both fully ''functional'' and ''testable'' at the same time. Built-in ''automation and reporting'' is similar in concept to a ''debug build'' except the focus is on testing.
 
  
===Testable Builds===
+
<source lang="ini">
The ''testable build'' leverages the existing software build process by integrating into the same ''make system'' used by the development team (no one-off or special builds). Automatically included in the build is test automation controllable from the host. When tests are executed, an xml is generated on the host (and optionally uploaded to Testspace) which includes detailed test results and timing analysis. This xml file uses a custom schema for representing the ''hierarchy of results'' (suites, cases, etc.). Also included is a stylsheet specification (which will be written to the same directory as the xml file) that allows the results to be viewed as HTML in a browser.
+
Loopsize  = 10
 +
InputFile  = ${MYPATH}/datacontent.bin
 +
Toogle    = On
 +
</source>
  
Developers can easily pre-flight test their source code changes before ''committing'' them to a baseline. Builds can be ''automatically regression tested'' as part of the daily build process.
+
Pass the name-value collection using the Stride Runner
  
===Functional Builds===
+
<source lang="bash">
The ''testable software'' is still fully functional and works exactly the same as before. Whatever the software image was used for in the past -- system testing, developer debugging, etc. -- is still applicable. The Stride '''test logic''']] is separated from the application source code and is NOT executed unless invoked via the Stride Runner. Any ''source instrumentation'' is only active when executing tests. The impact of built-in testability to the software application is nominal.
+
$ stride .. --run="MyTest(/path/to/myinput.ini)"
 +
</source>
  
The application can easily be switched back to a ''non-testable'' build by simply removing the ''STRIDE_ENABLED'' preprocessor directive and rebuilding. This flag controls all Stride related source code and macros; there are no changes required to the build process to enable or disable this functionality.
+
Now simply access your input within test logic using built-in services
  
= Rich set of Assertions =
+
<source lang="cpp">
STRIDE offers numerous testing techniques that enable deeper and more effective testing with less effort.
+
{
 +
  // .. doing stuff ..
 +
  GetParam("InputFile", buffer, size);
 +
  //.. using parameters for test logic
 +
}
 +
</source>
  
===Test Macros===
+
== Test Doubles & Test Points ==  
[[Test_Macros | Test Macros in native code]] provide one-line shortcuts for validating assertions and automatic report annotation in the case of failures. Test Macros are supported in both C/C++ and [[Perl_Script_APIs#Assertions | our scripting solution]].
+
Stride offers advanced testing techniques that enable deeper and more effective testing with less effort.
  
===Fixturing===
+
==== Test Doubles ====
Setting up your ''Software Under Test'' to be in the right state for a test is critical for repeatability. STRIDE supports a set of [http://en.wikipedia.org/wiki/Test_fixture '''Test fixture techniques'''] that include
+
For more advanced testing scenarios, dependencies can be '''doubled'''. This feature provides a means for intercepting C/C++ global functions on the target and substituting a stub, fake, or mock. The substitution is all controllable via the runtime, allowing the software to continue executing normally when not running a test.
* [[Test_Fixturing_in_C/C%2B%2B#Specifying___Fixturing_Methods | '''Setup/Teardown''']]
 
* [[Parameterized_Test_Units | '''Parameter passing to tests''']]
 
* [[File_Transfer_Services | '''Host/Target file transfer''']]
 
* [[Function_Capturing | '''Function remoting''']]
 
* etc.  
 
  
These techniques encourage best-practices such as partitioning of fixturing code and actual test code, and--in addition--these same techniques can be leveraged to dynamically configure your tests at run-time.
+
For example something like the following could be useful:
  
 +
<source lang="cpp">
 +
void MySuite::test1()
 +
{
 +
  // inserting my own version of malloc()
 +
  srDOUBLE_SET(malloc, my_malloc_stub);
  
===Other Features===
+
  // calling a routine that uses malloc(). checking handled null correctly
There are numerous other features that can be leveraged to facilitate deeper test coverage:
+
  ret_code = FuncThatUsesMalloc(42);
* Remoting global functions for script based API testing
+
  srEXPECT_EQ(ret_code, -1)
* Built-in logging on test execution
 
* Dynamic test / suite creation
 
* and much [[Test_API | ''' more ... ''']]
 
  
 +
  // restoring the real malloc()
 +
  srDOUBLE_RESET(malloc)
 +
}
 +
</source>
  
= Test Doubles & Test Points =  
+
==== Test Points ====
Stride offers advanced testing techniques that enable deeper and more effective testing with less effort.
+
Stride leverages ''source instrumentation'' to provide an additional validation technique called '''Expectation Testing''' that can be applied to the executing software application. The execution sequencing of the code, along with state data, can be automatically validated based on ''what is expected''. This validation technique does not focus on calling functions/methods but rather verifies ''code execution sequencing''. This can span threads, process boundaries, and even multiple targets, as the application(s) is running. Leveraging simple macros -- called '''Test Points''' -- developers strategically instrument the source under test.
 +
 
 +
<source lang="c">
  
===Test Doubles===
+
/* a test point with formatted string payload */
For more advanced testing scenarios, dependencies can be [[Using_Test_Doubles | '''doubled''']]. This feature provides a means for intercepting C/C++ global functions on the target and substituting a stub, fake, or mock. The substitution is all controllable via the runtime, allowing the software to continue executing normally when not running a test.
+
srTEST_POINT_STR("IMPORTANT", "important date= %d", myVar);
  
===Expectations===
+
</source>
STRIDE leverages [[Source_Instrumentation_Overview | '''source instrumentation''']] to provide '' [[Expectations | '''Expectations''']] ''as an additional validation technique that can be applied to the executing software application. The execution sequencing of the code, along with state data, can be automatically validated based on ''what is expected''. This validation technique does not focus on calling functions / methods but rather verifies ''code sequencing''. This can span threads, process boundaries, and even multiple targets, as the application(s) is running. Leveraging simple macros -- called [[Test_Point | '''Test Points''']] -- developers strategically instrument the source under test.
 
  
The test validation can be implemented in both [[Expectation_Tests_in_C/C%2B%2B | '''C/C++ on the target''']] and [[Perl_Script_APIs#STRIDE::Test | '''Perl script on the host''']]. In either case, the validation is done without impacting the application's performance (the on-target test code is executed in a background thread and scripts are executed on the host machine). When failures do occur, context is provided with the file name and associated line number of the failed expectations. This type of validation can be applied to a wide-range of testing scenarios:
+
The test validation is done without impacting the application's performance (the on-target test code is executed in a background thread and scripts are executed on the host machine). When failures do occur, context is provided with the file name and associated line number of the failed expectations. This type of validation can be applied to a wide-range of testing scenarios:
 
* State Machines
 
* State Machines
 
* Data flow through system components
 
* Data flow through system components
Line 88: Line 120:
 
* and much more ...
 
* and much more ...
  
''Software Quality Assurance (SQA)'' can also leverage [[Expectations | '''Expectations''']] as part of their existing functional / system testing. Because the [[Stride_Runner | '''runner''']] is a command line utility, it is easily controlled from existing test infrastructure. SQA can use the  [[Source_Instrumentation_Overview | '''instrumentation''']] to create their own [[Reporting_Model#Suites | '''test suite''']] using scripting that executes in concert with existing test automation.
+
The following is a snippet of what the test code might look like
 +
<source lang="c">
 +
 
 +
srTestPointExpect_t expected[]={
 +
  {"IMPORTANT"}, myCheckData,
 +
  {"ANOTHER_TP"},
 +
  {0}};
 +
 
 +
// setup the expections
 +
srTestPointSetup(expected, ..);
  
 +
// start the operations
  
= Test Implementation =
+
srTestPointWait(handle, 1000);
The test validation can be implemented in both ''native code'' on the target and ''script'' on the host.
 
  
===Tests in C/C++===
+
</source>
Writing API/Unit tests in [[Test_Units_Overview | '''native code''']] is the simplest way to begin validating the software. There is no new language to learn, no proprietary editor, and your normal programming workflow is not interrupted. Also there is no special APIs required to register tests, suites, etc. Just write your test in any combination of C/C++ and the auto-generated [[Intercept_Module | '''intercept module''']] via the [[Build_Tools | '''STRIDE build tools''']] takes care of everything. Tests from separate teams are automatically aggregated by the system -- no coordination is required.
 
  
This type of testing works well for:
+
== Test Implementation ==
 +
Stride based tests are integrated with the existing build system enabling your software to be both fully ''functional'' and ''testable'' at the same time. The ''test logic'' is separated from the application source code and is '''not''' executed unless invoked via the Stride Runner. Any ''source instrumentation'' is only active when executing tests. The impact of built-in testability to the software application is nominal.
  
* Calling APIs directly
+
The test validation can be implemented in both ''C/C++'' on the target and ''Perl'' on the host.  
* Validating C++ classes
 
* Isolating modules
 
* Critical processing / timing
 
* and much more...
 
  
===Tests in Script===
+
'''C/C++ Test Example'''
STRIDE also supports writing tests in [[Test_Modules_Overview | '''Perl script''']]. When writing test scripts there are minimal dependencies on the software build process. Tests can also validate global functions, setup conditions from the host, etc.  
+
<source  lang="cpp">
 +
#include <srtest.h>
 +
 
 +
class MyTest {
 +
public:
 +
    void CheckFoo();
 +
    void CheckBoo();
 +
};
 +
#pragma scl_test_class(MyTest)
 +
</source>
  
Scripts are well suited for Integration Testing focusing on:
 
  
* State Machines
+
<source  lang="cpp">
* Data flow through system components
+
#include <mytest.h>
* Sequencing between threads
+
 
* and much more...
+
void MyTest::CheckFoo() {
 +
    ..
 +
    srEXPECT_EQ(foo(2 + 2), 4);
 +
}
 +
void MyTest::CheckBoo() {
 +
    ..
 +
    srASSERT_GT(boo(3 * 3), 7);
 +
}
 +
</source>
 +
 
 +
 
 +
'''Perl Script Example'''
 +
<source lang="perl">
 +
use strict;
 +
use warnings;
  
In either case, the validation is done without impacting the application's performance.
+
package MyTests;
 +
use base qw(STRIDE::Test);
 +
use STRIDE::Test;
  
 +
sub CheckFoo : Test
 +
{
 +
    EXPECT_EQ(Remote->foo(2 + 2), 4);
 +
}
  
<br>
+
sub CheckBoo : Test
<br>
+
{
 +
    ASSERT_GT(Remote->boo(3 * 3), 7);
 +
}
  
 +
1;
 +
</source>
  
= Works with Testspace =
+
== Works with Testspace ==
  
TBD
+
Stride has been designed to fully leverage Testspace features such as test design, execution control, and test analysis. With Testspace, test content and status remain better organized and current results and progress are much easier to assess. Refer to [http://www.testspace.com Testspace] website for more details.
  
  
 
<hr/>
 
<hr/>
 
+
<references/>
<font size="3">  
 
'''For more details refer to our [[Frequently Asked Questions About STRIDE | FAQ]] '''
 

Latest revision as of 17:40, 21 May 2021

Stride™ is an xUnit-style test framework for C/C++ software comprised of an external test Runner, Runtime source code library, and a set of Build Tools. It was designed with a specific focus on enabling tests to be executed on a device using a fully functional build.[1]

Stride's unique host-target architecture allows easier and better On-Target/Device White-box testing. Software builds automatically become more testable; facilitating deeper code coverage opportunities.[2]

Stride is also fully integrated with Testspace for test content management.


Stride block diagram


Runner

Stride includes a lightweight Runner application that is a host-based command-line utility for interactive and automated test execution. It also integrates seamlessly with Testspace for test content management.

Runtime

Stride also contains a Runtime software source package. The Runtime enables testability by integrating with the software under test along with supporting connectivity with the host system, all with minimal impact on performance or code size. The software is agnostic to the RTOS, CPU, and host/device I/O transport. It supports simple single-process devices as well as multi-process and multi-threaded environments. It can be used with software running in either user or kernel mode, including drivers. Typically the Runtime is configured as a background thread and only executes when running tests.

Build Tools

STRIDE 4.2 Framework-b.jpg

The Stride Build Tools are a set of command-line utilities that integrate with your target software build process. They preprocess standard C/C++ header files that contain Stride test declarations to auto-generate C/C++ source code comprising a custom Intercept Module. The intercept module code is then included in your target software build along with the Stride Runtime to provide fixturing and harnessing test logic as part of your build image.

Cross Platform

Stride works on virtually any target platform. Stride's cross-platform framework facilitates a unified testing approach for all team members, enabling organizations to standardize on a test workflow that is independent of the target platform being used or what branch of software is being changed.

Runtime Written in Standard C

The Stride Runtime is written in standard ANSI C on top of a simple customizable platform abstraction layer that enables it to work across platforms. It can be configured for a single process multi-threading environment or multiple process environments (i.e. Android, Linux, Windows, Embedded RTOS, etc.). It is delivered as source code to be included in the application's build system. The transport between the host and target is configurable and supports Serial and TCP/IP by default. Custom transports are also available.

The runtime has been tailored specifically for embedded applications; overhead is minimal. It consumes very little memory for table and control block storage. Resource usage is configurable and can be adjusted to conform to any limitations of the target platform.

Integrates With Your Existing Build System

Stride auto-generates intercept module harnessing and remoting functionality as C or C++ source code during the make process, removing any dependencies on specific compilers and / or processors.

Supports Off-Target Testing

Testing can also be simulated using a standard desktop computer (Windows, Linux, or FreeBSD) with no changes to test code. The Stride SDKs allow for a seamless transition between the real target and an Off-Target host environment.

Rich set of Assertions

Test cases are typically constructed leveraging a large set of available assertion macros. When failures occur, these macros automatically set test status and provide details to the test report such as file name, line number, and condition causing the failure. Stride provides a large set of these macros to validate a wide variety of scenarios.

#include <mytest.h>

void MyTest::CheckFoo() {
    ..  
    srEXPECT_EQ(foo(2 + 2), 4); 
}
void MyTest::CheckBoo() {
    ..
    srASSERT_GT(boo(3 * 3), 7); 
}

Extensive Parameter Support

Parameterized testing is key to reducing test code duplication. Constructor arguments, name-value collection, and host file remoting are all supported. Stride provides an easy way for passing and accessing these types of parameters, allowing customization of test behavior at runtime.

Create an INI-type of file (i.e. myinput.ini)

Loopsize   = 10
InputFile  = ${MYPATH}/datacontent.bin
Toogle     = On

Pass the name-value collection using the Stride Runner

$ stride .. --run="MyTest(/path/to/myinput.ini)"

Now simply access your input within test logic using built-in services

{
  // .. doing stuff ..
  GetParam("InputFile", buffer, size);
  //.. using parameters for test logic
}

Test Doubles & Test Points

Stride offers advanced testing techniques that enable deeper and more effective testing with less effort.

Test Doubles

For more advanced testing scenarios, dependencies can be doubled. This feature provides a means for intercepting C/C++ global functions on the target and substituting a stub, fake, or mock. The substitution is all controllable via the runtime, allowing the software to continue executing normally when not running a test.

For example something like the following could be useful:

void MySuite::test1()
{
  // inserting my own version of malloc()
  srDOUBLE_SET(malloc, my_malloc_stub);

  // calling a routine that uses malloc(). checking handled null correctly
  ret_code = FuncThatUsesMalloc(42);
  srEXPECT_EQ(ret_code, -1)

  // restoring the real malloc()
  srDOUBLE_RESET(malloc)
}

Test Points

Stride leverages source instrumentation to provide an additional validation technique called Expectation Testing that can be applied to the executing software application. The execution sequencing of the code, along with state data, can be automatically validated based on what is expected. This validation technique does not focus on calling functions/methods but rather verifies code execution sequencing. This can span threads, process boundaries, and even multiple targets, as the application(s) is running. Leveraging simple macros -- called Test Points -- developers strategically instrument the source under test.

/* a test point with formatted string payload */
srTEST_POINT_STR("IMPORTANT", "important date= %d", myVar);

The test validation is done without impacting the application's performance (the on-target test code is executed in a background thread and scripts are executed on the host machine). When failures do occur, context is provided with the file name and associated line number of the failed expectations. This type of validation can be applied to a wide-range of testing scenarios:

  • State Machines
  • Data flow through system components
  • Sequencing between threads
  • Drivers that don't return values
  • and much more ...

The following is a snippet of what the test code might look like

srTestPointExpect_t expected[]={
  {"IMPORTANT"}, myCheckData,
  {"ANOTHER_TP"},
  {0}};

// setup the expections
srTestPointSetup(expected, ..);

// start the operations

srTestPointWait(handle, 1000);

Test Implementation

Stride based tests are integrated with the existing build system enabling your software to be both fully functional and testable at the same time. The test logic is separated from the application source code and is not executed unless invoked via the Stride Runner. Any source instrumentation is only active when executing tests. The impact of built-in testability to the software application is nominal.

The test validation can be implemented in both C/C++ on the target and Perl on the host.

C/C++ Test Example

#include <srtest.h>
  
class MyTest {
public: 
    void CheckFoo();
    void CheckBoo();
};
#pragma scl_test_class(MyTest)


#include <mytest.h>

void MyTest::CheckFoo() {
    ..  
    srEXPECT_EQ(foo(2 + 2), 4); 
}
void MyTest::CheckBoo() {
    ..
    srASSERT_GT(boo(3 * 3), 7); 
}


Perl Script Example

use strict;
use warnings;

package MyTests;
use base qw(STRIDE::Test);
use STRIDE::Test;

sub CheckFoo : Test
{
    EXPECT_EQ(Remote->foo(2 + 2), 4);
}

sub CheckBoo : Test
{
    ASSERT_GT(Remote->boo(3 * 3), 7);
}

1;

Works with Testspace

Stride has been designed to fully leverage Testspace features such as test design, execution control, and test analysis. With Testspace, test content and status remain better organized and current results and progress are much easier to assess. Refer to Testspace website for more details.



  1. Fully functional build means that the software works the same as before instrumentation, but now has built-in tests that can be invoked on-demand by the test Runner.
  2. For more details refer to our FAQ.