-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WFLY-19228 JWTClientIT is not an Arquillian test
- Loading branch information
Showing
2 changed files
with
0 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,10 +29,7 @@ | |
import org.apache.http.impl.client.CloseableHttpClient; | ||
import org.apache.http.impl.client.HttpClientBuilder; | ||
import org.apache.http.util.EntityUtils; | ||
import org.jboss.arquillian.container.test.api.RunAsClient; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
|
||
/** | ||
|
@@ -44,8 +41,6 @@ | |
* | ||
* @author <a href="mailto:[email protected]">Darran Lofthouse</a> | ||
*/ | ||
@RunWith(Arquillian.class) | ||
@RunAsClient | ||
public class JWTClientIT { | ||
private static final String SUBSCRIPTION = "subscription"; | ||
private static final String BIRTHDAY = "birthday"; | ||
|
@@ -61,8 +56,6 @@ public class JWTClientIT { | |
private static final String AUTHORIZATION = "Authorization"; | ||
private static final String BEARER = "Bearer"; | ||
|
||
private static final String APP_NAME = "microprofile-jwt"; | ||
|
||
private final CloseableHttpClient httpClient = HttpClientBuilder.create().build(); | ||
|
||
@Test | ||
|