Skip to content

Commit

Permalink
[RESTEASY-1446] More exclusions (the same tests are in legacy testsuite)
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Dec 13, 2017
1 parent 070f2c4 commit f65d0a5
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -25,6 +25,7 @@
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.resteasy.category.ExpectedFailing;
import org.jboss.resteasy.client.jaxrs.ResteasyClientBuilder;
import org.jboss.resteasy.test.asynch.resource.JaxrsAsyncServletApp;
import org.jboss.resteasy.test.asynch.resource.JaxrsAsyncServletAsyncResponseBlockingQueue;
Expand All @@ -43,6 +44,7 @@
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;

/**
Expand Down Expand Up @@ -444,12 +446,14 @@ public void resumeWithExceptionReturnsFalseWhenResumedTest() throws Exception
}

@Test
@Category({ExpectedFailing.class}) // See RESTEASY-1446
public void setTimeoutTest() throws Exception
{
setTimeoutTestInternal();
}

@Test
@Category({ExpectedFailing.class}) // See RESTEASY-1446
public void updateTimeoutTest() throws Exception
{
invokeClear();
Expand All @@ -469,6 +473,7 @@ public void updateTimeoutTest() throws Exception
}

@Test
@Category({ExpectedFailing.class}) // See RESTEASY-1446
public void handleTimeOutWaitsForeverTest() throws Exception
{
String responseMsg = "handleTimeOutWaitsForeverTest";
Expand All @@ -482,6 +487,7 @@ public void handleTimeOutWaitsForeverTest() throws Exception
}

@Test
@Category({ExpectedFailing.class}) // See RESTEASY-1446
public void handleTimeoutCancelsTest() throws Exception
{
invokeClear();
Expand All @@ -495,6 +501,7 @@ public void handleTimeoutCancelsTest() throws Exception
}

@Test
@Category({ExpectedFailing.class}) // See RESTEASY-1446
public void handleTimeoutResumesTest() throws Exception
{
invokeClear();
Expand Down

0 comments on commit f65d0a5

Please sign in to comment.