mirror of https://github.com/apache/archiva.git
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:
parent
fe746a16a9
commit
4e87cdb7c5
|
@ -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;
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.junit.runners.model.Statement;
|
|||
/**
|
||||
* @author Olivier Lamy
|
||||
*/
|
||||
public class ScreenshotCaptureRule
|
||||
public class ArchivaSeleniumExecutionRule
|
||||
implements MethodRule //TestRule
|
||||
{
|
||||
|
Loading…
Reference in New Issue