protected void runChild( FrameworkMethod method, RunNotifier notifier )
{
// Don't run the test if the @Ignored annotation is used
if ( method.getAnnotation( Ignore.class ) != null )
{
Description description = describeChild( method );
notifier.fireTestIgnored( description );
return;
}
// Get the applyLdifs for each level
Description suiteDescription = null;
if ( suite != null )
{
suiteDescription = suite.getDescription();
}
Description classDescription = getDescription();
Description methodDescription = describeChild( method );
// Ok, ready to run the test
try
{
DirectoryService directoryService = null;