Skip to content

Commit

Permalink
label tests
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1988 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Mar 14, 2009
1 parent da4e4b1 commit 962047c
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 4 deletions.
Expand Up @@ -10,11 +10,11 @@
public class ContextTest extends AbstractWebBeansTest
{
// WBRI-155
@Test(groups="stub")
@Test(description="WBRI155", groups="stub")
public void testSessionContextActiveForMultipleSimultaneousThreads()
{
// TODO impl
assert false;
// TODO Implement this test
}

}
@@ -0,0 +1,22 @@
package org.jboss.webbeans.test.unit.implementation.enterprise;

import org.jboss.testharness.impl.packaging.Artifact;
import org.jboss.testharness.impl.packaging.IntegrationTest;
import org.jboss.testharness.impl.packaging.Packaging;
import org.jboss.testharness.impl.packaging.PackagingType;
import org.jboss.webbeans.test.unit.AbstractWebBeansTest;
import org.testng.annotations.Test;

@Artifact
@IntegrationTest
@Packaging(PackagingType.EAR)
public class EnterpriseBeanTest extends AbstractWebBeansTest
{

@Test(description="WBRI-179")
public void testSFSBWithOnlyRemoteInterfacesDeploys()
{

}

}
@@ -0,0 +1,9 @@
package org.jboss.webbeans.test.unit.implementation.enterprise;

import javax.ejb.Stateful;

@Stateful
public class Hat implements HatRemote
{

}
@@ -0,0 +1,9 @@
package org.jboss.webbeans.test.unit.implementation.enterprise;

import javax.ejb.Remote;

@Remote
public interface HatRemote
{

}
Expand Up @@ -16,7 +16,7 @@ public class EnterpriseBeanProxyTest extends AbstractWebBeansTest
/**
* <a href="https://jira.jboss.org/jira/browse/WBRI-109">WBRI-109</a>
*/
@Test
@Test(description="WBRI-109")
public void testNoInterfaceView() throws Exception
{
new RunInDependentContext()
Expand Down
Expand Up @@ -62,7 +62,7 @@ public void testUserDefinedDeploymentType()
/**
* Test case for WBRI-21.
*/
@Test(expectedExceptions=DeploymentException.class)
@Test(expectedExceptions=DeploymentException.class, description="WBRI-21")
public void testDuplicateDeployElement()
{
Iterable<URL> urls = getResources("duplicate-deployments-beans.xml");
Expand Down

0 comments on commit 962047c

Please sign in to comment.