component displayName="TestBox xUnit suite" labels="railo,cf"{
function setup( currentMethod ){
application.wirebox = new coldbox.system.ioc.Injector();
function teardown( currentMethod ){
structDelete( application, "wirebox" );
$assert.throws(function(){
var hello = application.wirebox.getInstance( "myINvalidService" ).run();
function testNotThrows(){
$assert.notThrows(function(){
var hello = application.wirebox.getInstance( "MyValidService" ).run();;