Vincent, have you run the tests with this assertion? It fails for me on every container I tried: - jboss3x - orion1x - orion2x - resin2x - tomcat3x - tomcat4x - tomcat5x
-chris (not a container ;-) )
[EMAIL PROTECTED] wrote:
vmassol 2003/06/22 10:14:43
Modified: samples/servlet/src/test-cactus/share/org/apache/cactus/sample/unit
TestHttpSession.java
Log:
Session cookie should not be null
Revision Changes Path
1.5 +2 -1 jakarta-cactus/samples/servlet/src/test-cactus/share/org/apache/cactus/sample/unit/TestHttpSession.java
Index: TestHttpSession.java
===================================================================
RCS file: /home/cvs/jakarta-cactus/samples/servlet/src/test-cactus/share/org/apache/cactus/sample/unit/TestHttpSession.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- TestHttpSession.java 26 May 2003 12:15:14 -0000 1.4
+++ TestHttpSession.java 22 Jun 2003 17:14:43 -0000 1.5
@@ -125,6 +125,7 @@
public void beginCreateSessionCookie(WebRequest theRequest)
{
HttpSessionCookie sessionCookie = theRequest.getSessionCookie();
+ assertNotNull("Session cookie should not be null", sessionCookie);
theRequest.addCookie(sessionCookie);
}
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
