public String smartTrimmedStackTrace()
{
Throwable exception = junitFailure.getException();
if ( exception != null )
{
SmartStackTraceParser smartStackTraceParser = new SmartStackTraceParser( getTestClassName(), exception,
getTestMethodName() );
return smartStackTraceParser.getString();
}
else
{
return junitFailure.getMessage();
}