Skip to content

Commit

Permalink
Stubs for request context tests
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@198 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Oct 28, 2008
1 parent 6fd534a commit ea99d02
Showing 1 changed file with 78 additions and 0 deletions.
@@ -0,0 +1,78 @@
package org.jboss.webbeans.test;

import org.testng.annotations.Test;

public class RequestContextTest extends AbstractTest
{

@Test(groups={"servlet", "contexts"}) @SpecAssertion(section="8.5.1")
public void testScopeActiveDuringServiceMethod()
{
assert false;
}

@Test(groups={"webservice", "contexts"}) @SpecAssertion(section="8.5.1")
public void testScopeActiveDuringWebServiceInvocation()
{
assert false;
}

@Test(groups={"contexts", "ejb3"}) @SpecAssertion(section="8.5.1")
public void testScopeActiveDuringRemoteInvocationOfEjbs()
{
assert false;
}

@Test(groups={"contexts", "ejb3"}) @SpecAssertion(section="8.5.1")
public void testScopeActiveDuringEjbTimeoust()
{
assert false;
}

@Test(groups={"contexts", "ejb3"}) @SpecAssertion(section="8.5.1")
public void testScopeActiveDuringMessageDelivery()
{
assert false;
}

@Test(groups={"servlet", "contexts"}) @SpecAssertion(section="8.5.1")
public void testScopeNotSharedAcrossRequests()
{
assert false;
}

@Test(groups={"webservice", "contexts"}) @SpecAssertion(section="8.5.1")
public void testScopeNotSharedAcrossWebServiceInvocations()
{
assert false;
}

@Test(groups={"contexts", "ejb3"}) @SpecAssertion(section="8.5.1")
public void testScopeNotSharedAcrossRemoteInvocationsOfEjbs()
{
assert false;
}

@Test(groups={"contexts", "ejb3"}) @SpecAssertion(section="8.5.1")
public void testScopeNotSharedAcrossEjbTimeouts()
{
assert false;
}

@Test(groups={"contexts", "ejb3"}) @SpecAssertion(section="8.5.1")
public void testScopeNotSharedAcrossMessageDelivery()
{
assert false;
}

/*
@Test @SpecAssertion(section="8.5.3")
public void test
{
assert false;
}
*/

}

0 comments on commit ea99d02

Please sign in to comment.