Skip to content

Commit

Permalink
marked exception tests as incontainer-broken
Browse files Browse the repository at this point in the history
  • Loading branch information
mbogoevici authored and pmuir committed Aug 14, 2010
1 parent 81dc92b commit e1b2095
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
Expand Up @@ -18,6 +18,7 @@

import org.jboss.testharness.impl.packaging.Artifact;
import org.jboss.testharness.impl.packaging.ExpectedDeploymentException;
import org.jboss.testharness.impl.packaging.IntegrationTest;
import org.jboss.testharness.impl.packaging.Packaging;
import org.jboss.testharness.impl.packaging.PackagingType;
import org.jboss.testharness.impl.packaging.jsr299.BeansXml;
Expand All @@ -32,7 +33,7 @@
@Packaging(PackagingType.EAR)
public class FinalClassClassLevelInterceptorTest extends AbstractWeldTest
{
@Test
@Test(groups="incontainer-broken")
public void testFinalClassWithClassLevelInterceptor() throws Exception
{
assert false;
Expand Down
Expand Up @@ -29,11 +29,12 @@

@Artifact
@ExpectedDeploymentException(DefinitionException.class)
@IntegrationTest(runLocally = true)
@BeansXml("beans.xml")
@Packaging(PackagingType.EAR)
public class FinalClassMethodLevelInterceptorTest extends AbstractWeldTest
{
@Test
@Test(groups="incontainer-broken")
public void testFinalClassWithMethodLevelInterceptor() throws Exception
{
assert false;
Expand Down
Expand Up @@ -18,6 +18,7 @@

import org.jboss.testharness.impl.packaging.Artifact;
import org.jboss.testharness.impl.packaging.ExpectedDeploymentException;
import org.jboss.testharness.impl.packaging.IntegrationTest;
import org.jboss.testharness.impl.packaging.Packaging;
import org.jboss.testharness.impl.packaging.PackagingType;
import org.jboss.testharness.impl.packaging.jsr299.BeansXml;
Expand All @@ -32,7 +33,7 @@
@Packaging(PackagingType.EAR)
public class FinalMethodClassLevelInterceptorTest extends AbstractWeldTest
{
@Test
@Test(groups="incontainer-broken")
public void testFinalMethodWithClassLevelInterceptor() throws Exception
{
assert false;
Expand Down
Expand Up @@ -18,6 +18,7 @@

import org.jboss.testharness.impl.packaging.Artifact;
import org.jboss.testharness.impl.packaging.ExpectedDeploymentException;
import org.jboss.testharness.impl.packaging.IntegrationTest;
import org.jboss.testharness.impl.packaging.Packaging;
import org.jboss.testharness.impl.packaging.PackagingType;
import org.jboss.testharness.impl.packaging.jsr299.BeansXml;
Expand All @@ -28,12 +29,11 @@

@Artifact
@ExpectedDeploymentException(DefinitionException.class)
//@IntegrationTest
@BeansXml("beans.xml")
@Packaging(PackagingType.EAR)
public class FinalMethodMethodLevelInterceptorTest extends AbstractWeldTest
{
@Test
@Test(groups="incontainer-broken")
public void testFinalMethodWithMethodLevelInterceptor() throws Exception
{
assert false;
Expand Down

0 comments on commit e1b2095

Please sign in to comment.