[webbeans-commits] Webbeans SVN: r198 - ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Tue Oct 28 11:39:14 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-10-28 11:39:14 -0400 (Tue, 28 Oct 2008)
New Revision: 198

Added:
   ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/RequestContextTest.java
Log:
Stubs for request context tests

Added: ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/RequestContextTest.java
===================================================================
--- ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/RequestContextTest.java	                        (rev 0)
+++ ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/RequestContextTest.java	2008-10-28 15:39:14 UTC (rev 198)
@@ -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;
+   }
+
+    */
+   
+}


Property changes on: ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/RequestContextTest.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain




More information about the weld-commits mailing list