Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests/Context/Support
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv17021/test/Spring/Spring.Web.Tests/Context/Support
Modified Files:
WebApplicationContextTests.cs
Log Message:
SPRNET-953
SPRNET-952
SPRNET-949
SPRNET-948
SPRNET-947
Index: WebApplicationContextTests.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests/Context/Support/WebApplicationContextTests.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WebApplicationContextTests.cs 2 Feb 2008 10:24:39 -0000 1.1
--- WebApplicationContextTests.cs 29 May 2008 12:13:27 -0000 1.2
***************
*** 73,77 ****
catch(ObjectCreationException oce1)
{
! Assert.IsTrue(-1 < oce1.Message.IndexOf("without a valid HttpContext.Current instance"));
}
--- 73,77 ----
catch(ObjectCreationException oce1)
{
! Assert.IsTrue(oce1.Message.EndsWith("requires a valid Request."));
}
***************
*** 83,87 ****
catch (ObjectCreationException oce1)
{
! Assert.IsTrue(-1 < oce1.Message.IndexOf("without a valid HttpContext.Current instance"));
}
--- 83,87 ----
catch (ObjectCreationException oce1)
{
! Assert.IsTrue(oce1.Message.EndsWith("requires a valid Session."));
}
|