Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
volosied committed Feb 24, 2023
1 parent 0c6450f commit 1707a17
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,13 @@
import java.util.List;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.shrinkwrap.api.importer.ZipImporter;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlInput;
Expand All @@ -45,8 +43,9 @@
import com.gargoylesoftware.htmlunit.html.HtmlSpan;
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;

@RunWith(Arquillian.class)
public class AjaxTestsIT {
import ee.jakarta.tck.faces.test.util.arquillian.ITBase;

public class AjaxTestsIT extends ITBase {

@ArquillianResource
private URL webUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,12 @@
import java.util.TreeMap;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.shrinkwrap.api.importer.ZipImporter;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;

import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.DomAttr;
Expand All @@ -47,8 +45,9 @@
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import com.gargoylesoftware.htmlunit.html.HtmlSpan;

@RunWith(Arquillian.class)
public class CommandLinkTestsIT {
import ee.jakarta.tck.faces.test.util.arquillian.ITBase;

public class CommandLinkTestsIT extends ITBase {

@ArquillianResource
private URL webUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@
import com.gargoylesoftware.htmlunit.html.HtmlAnchor;
import com.gargoylesoftware.htmlunit.html.HtmlPage;

@RunWith(Arquillian.class)
public class ProtectedViewsTestIT {
import ee.jakarta.tck.faces.test.util.arquillian.ITBase;

public class ProtectedViewsTestIT extends ITBase {

@ArquillianResource
private URL webUrl;
Expand Down
1 change: 1 addition & 0 deletions tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<module>faces22</module>
<module>faces23</module>
<module>faces40</module>
<module>old-tck-selenium</module>
<module>old-tck</module>
<module>faces-signaturetest</module>
</modules>
Expand Down

0 comments on commit 1707a17

Please sign in to comment.