Life-Cycle Events
function beforeAll(){
super.beforeAll();
// do your own stuff here
}
function afterAll(){
// do your own stuff here
super.afterAll();
}Improving Performance: Unloading ColdBox
component extends="coldbox.system.testing.BaseTestCase" unloadColdBox=false{
function beforeAll(){
this.unloadColdBox = false;
super.beforeAll();
// do your own stuff here
}
}Last updated
Was this helpful?
