Bundles: Group Your Tests
A Test Bundle is a CFC
component extends="testbox.system.BaseSpec"{
// executes before all suites
function beforeAll(){}
// executes after all suites
function afterAll(){}
// All suites go in here
function run( testResults, testBox ){
}
}Life-Cycle Methods
// executes before all suites
function beforeAll(){}
// executes after all suites
function afterAll(){}Execution
Last updated
Was this helpful?