log skips

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@899067 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2010-01-14 05:28:51 +00:00
parent 9ef096945d
commit d0b3ad29df
1 changed files with 7 additions and 0 deletions

View File

@ -34,6 +34,13 @@ import com.thoughtworks.selenium.Selenium;
public class CaptureScreenShotsListener public class CaptureScreenShotsListener
extends TestListenerAdapter extends TestListenerAdapter
{ {
@Override
public void onTestSkipped( ITestResult tr )
{
System.out.println( "Test " + tr.getName() + " -> Skipped" );
super.onTestSkipped( tr );
}
@Override @Override
public void onTestFailure( ITestResult tr ) public void onTestFailure( ITestResult tr )
{ {