Skip to content

Commit

Permalink
[JBWS-4041] Excluding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Nov 23, 2016
1 parent bc389c3 commit 875a89a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Expand Up @@ -103,6 +103,10 @@ public void testJMSEndpointServerSide() throws Exception
@RunAsClient
public void testJMSEndpointClientSide() throws Exception
{
if (!JBossWSTestHelper.isTargetWildFly10() && !JBossWSTestHelper.isTargetWildFly9()) {
System.out.println("FIXME: [JBWS-4041] Test excluded because of WFLY-7649");
return;
}
URL wsdlUrl = getResourceURL("jaxws/cxf/jms/META-INF/wsdl/HelloWorldService.wsdl");
QName serviceName = new QName("http://org.jboss.ws/jaxws/cxf/jms", "HelloWorldService");

Expand Down
Expand Up @@ -103,6 +103,10 @@ public void testJMSEndpointServerSide() throws Exception
@RunAsClient
public void testJMSEndpointClientSide() throws Exception
{
if (!JBossWSTestHelper.isTargetWildFly10() && !JBossWSTestHelper.isTargetWildFly9()) {
System.out.println("FIXME: [JBWS-4041] Test excluded because of WFLY-7649");
return;
}
URL wsdlUrl = getResourceURL("jaxws/cxf/jms_http/WEB-INF/wsdl/HelloWorldService.wsdl");
QName serviceName = new QName("http://org.jboss.ws/jaxws/cxf/jms", "HelloWorldService");

Expand Down

0 comments on commit 875a89a

Please sign in to comment.