Running Tests: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Stride | Tests are executed using the [[STRIDE Runner | Stride Runner]] controlled by a host computer that is physically connected to the target via a configurable communication channel (TCP/IP or serial port). The application software is required to be running, including the [[STRIDE Runtime | Stride Runtime]], enabling a ''connection'' between the ''Runner'' and ''Runtime''. | ||
'''Block diagram''' | '''Block diagram''' | ||
[[Image:Running_Tests.jpg| | [[Image:Running_Tests.jpg|400px|Connection Block Diagram]] | ||
'''Invoking the Runner (aka <tt> | '''Invoking the STRIDE Runner (aka <tt>stride</tt>) from a console''' | ||
stride --database=" | stride --database="path/to/YourTestApp.sidb" --device=TCP:localhost:8000 --run="*" | ||
Option files can be helpful (i.e. my.opt) | Option files can be helpful (i.e. my.opt) | ||
--database " | --database "path/to/YourTestApp.sidb" | ||
--device TCP:localhost:8000 | --device TCP:localhost:8000 | ||
Line 33: | Line 29: | ||
;database file | ;database file | ||
: This is the .sidb file that is created by the | : This is the .sidb file that is created by the ''Stride Compiler'' during the target build process. This file contains meta-information used to run tests. | ||
;device parameters | ;device parameters | ||
: This | : This defines how to connect to the target. | ||
;tests to run | ;tests to run | ||
: A set of [[Test | : A set of [[Test Unit| Test Units]] compiled in the database. You may also optionally specify named hierarchical suites in which to put the results of the tests you designate. | ||
Line 49: | Line 45: | ||
;local xml file | ;local xml file | ||
: Detailed results are written to a local xml file. By default, this file is written to the directory where the input | : Detailed results are written to a local xml file. By default, this file is written to the directory where the input Stride database file is located and given the same name as the database file with an extension of ".xml". If you open this file in a web browser, an xsl transform is automatically downloaded and applied before rendering. | ||
Optionally, you may also publish the results to [http://www.testspace.com Test Space] upon test completion. | Optionally, you may also publish the results to [http://www.testspace.com Test Space] upon test completion. | ||
Latest revision as of 19:20, 17 October 2017
Tests are executed using the Stride Runner controlled by a host computer that is physically connected to the target via a configurable communication channel (TCP/IP or serial port). The application software is required to be running, including the Stride Runtime, enabling a connection between the Runner and Runtime.
Block diagram
Invoking the STRIDE Runner (aka stride) from a console
stride --database="path/to/YourTestApp.sidb" --device=TCP:localhost:8000 --run="*"
Option files can be helpful (i.e. my.opt)
--database "path/to/YourTestApp.sidb" --device TCP:localhost:8000
stride --options_file my.opt --run "*"
Reviewing your Results
Input
In order to run tests, you must provide the following information to stride.exe:
- database file
- This is the .sidb file that is created by the Stride Compiler during the target build process. This file contains meta-information used to run tests.
- device parameters
- This defines how to connect to the target.
- tests to run
- A set of Test Units compiled in the database. You may also optionally specify named hierarchical suites in which to put the results of the tests you designate.
Output
Upon test completion, test output is always written as follows:
- console output
- A quick summary of results is written to standard output. Test counts are shown for the categories of passed, failed, in progress, and not in use
- local xml file
- Detailed results are written to a local xml file. By default, this file is written to the directory where the input Stride database file is located and given the same name as the database file with an extension of ".xml". If you open this file in a web browser, an xsl transform is automatically downloaded and applied before rendering.
Optionally, you may also publish the results to Test Space upon test completion.