component extends="testbox.system.BaseSpec"{
// executes before all suites
wirebox = new wirebox.system.ioc.Injector( "path.to.Binder" );
// executes after all suites
structDelete( application, "wirebox" );
function run( testResults, testBox ){
describe( "UserService", () => {
it( "can be created and wired", () => {
var target = wirebox.getInstance( "UserService" );
expect( target ).toBeComponent();
expect( target.getUserDAO() ).toBeComponent();