rename rule class

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1296374 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-03-02 18:39:07 +00:00
parent fe746a16a9
commit 4e87cdb7c5
3 changed files with 4 additions and 6 deletions
archiva-modules/archiva-web/archiva-webapp-test-js/src/test/java/org/apache/archiva/web/test

View File

@ -1,7 +1,5 @@
package org.apache.archiva.web.test.parent;
import org.apache.archiva.web.test.tools.ScreenshotCaptureRule;
import org.junit.Rule;
import org.junit.runner.RunWith;
import org.junit.runners.BlockJUnit4ClassRunner;

View File

@ -21,7 +21,7 @@ package org.apache.archiva.web.test.parent;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;
import org.apache.archiva.web.test.tools.ScreenshotCaptureRule;
import org.apache.archiva.web.test.tools.ArchivaSeleniumExecutionRule;
import org.junit.Assert;
import org.junit.Rule;
@ -44,7 +44,7 @@ public abstract class AbstractSeleniumTest
{
@Rule
public ScreenshotCaptureRule screenshotCaptureRule = new ScreenshotCaptureRule();
public ArchivaSeleniumExecutionRule archivaSeleniumExecutionRule = new ArchivaSeleniumExecutionRule();
public String browser = System.getProperty( "browser" );
@ -70,7 +70,7 @@ public abstract class AbstractSeleniumTest
p = new Properties();
p.load( this.getClass().getClassLoader().getResourceAsStream( "test.properties" ) );
open( baseUrl, browser, seleniumHost, seleniumPort, maxWaitTimeInMs );
screenshotCaptureRule.selenium = selenium;
archivaSeleniumExecutionRule.selenium = selenium;
assertAdminCreated();
}

View File

@ -28,7 +28,7 @@ import org.junit.runners.model.Statement;
/**
* @author Olivier Lamy
*/
public class ScreenshotCaptureRule
public class ArchivaSeleniumExecutionRule
implements MethodRule //TestRule
{