}
private void checkTestComponent()
throws Exception
{
TestComponent testComponent = this.getTestComponent();
testComponent.test();
assertEquals( testComponent.getBar(), "BAR" );
assertEquals( testComponent.getFoo(), "FOO" );
assertNotNull( testComponent.getUrnAvalonClassLoader() );
assertNotNull( testComponent.getUrnAvaloneHome() );
assertNotNull( testComponent.getUrnAvaloneTemp() );
assertNotNull( testComponent.getUrnAvalonName() );
assertNotNull( testComponent.getUrnAvalonPartition() );
try
{
testComponent.createException("enforce exception", this);
}
catch( Exception e )
{
// nothing to do
}