Suites: Describe Your Tests
Describe(), Feature(), Scenario(), Given(), When()
A test suite in TestBox is a collection of specifications that model what you want to test. As we will investigate, the way the suite is expressed can be of many different types.
Test suite is a container that has a set of tests which helps testers in executing and reporting the test execution status.
A test suite begins with a call to our TestBox describe()
function with at least two arguments: a title
and a body
function/closure. The title
is the name of the suite to register and the body
function/closure is the block of code that implements the suite.
When applying BDD to your tests, this function is used to describe your story scenarios that you will implement.
The describe()
function is also aliased with the following names:story(), feature(), scenario(), given(), when()
Arguments
There are more arguments, which you can see below:
Argument | Required | Default | Type | Description |
| true | --- | string | The title of the suite to register |
| true | --- | closure/udf | The closure that represents the test suite |
| false | --- | string/array | The list or array of labels this suite group belongs to |
| false | false | Boolean | If you want to parallelize the execution of the defined specs in this suite group. |
| false | false | Boolean | A flag or a closure that tells TestBox to skip this suite group from testing if true. If this is a closure it must return boolean. |
Last updated