Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests/Objects/Factory/Support
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv23425/test/Spring/Spring.Web.Tests/Objects/Factory/Support
Modified Files:
WebObjectDefinitionFactoryTests.cs
Log Message:
nant build script's variable ${nowarn.numbers.test} renamed to ${nowarn.numbers.test.default}
DataBindingPanel -> added design-time support (SPRNET-774)
DataBindingPanel -> added examples to SpringWebQuickstart "EasyEmplyeeInfo" (SPRNET-787)
integrated NUnitAspEx (SPRNET-788)
added PageHandlerFactory tests w.r.t. Server.Transfer() (SPRNET-763)
Index: WebObjectDefinitionFactoryTests.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests/Objects/Factory/Support/WebObjectDefinitionFactoryTests.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WebObjectDefinitionFactoryTests.cs 29 May 2007 18:19:26 -0000 1.1
--- WebObjectDefinitionFactoryTests.cs 3 Dec 2007 16:11:31 -0000 1.2
***************
*** 87,91 ****
/// </summary>
/// <remarks>
! /// We keep this test here to ensure a minimum of checking expected behaviour
/// - in this case trying to compile the requested page.
/// </remarks>
--- 87,91 ----
/// </summary>
/// <remarks>
! /// We keep this test here to ensure a minimum of checking expected behaviour
/// - in this case trying to compile the requested page.
/// </remarks>
***************
*** 94,98 ****
public void ResolvesToPageRootDefinitionIfEndsWithASPX()
{
! using (TestWebContext ctx = new TestWebContext("/Spring/Objects/Factory/Support/", "/testform.aspx"))
{
WebObjectDefinitionFactory factory = new WebObjectDefinitionFactory();
--- 94,98 ----
public void ResolvesToPageRootDefinitionIfEndsWithASPX()
{
! using (TestWebContext ctx = new TestWebContext("/Spring/Objects/Factory/Support", "/testform.aspx"))
{
WebObjectDefinitionFactory factory = new WebObjectDefinitionFactory();
***************
*** 108,112 ****
/// </summary>
/// <remarks>
! /// We keep this test here to ensure a minimum of checking expected behaviour
/// - in this case trying to compile the requested page.
/// </remarks>
--- 108,112 ----
/// </summary>
/// <remarks>
! /// We keep this test here to ensure a minimum of checking expected behaviour
/// - in this case trying to compile the requested page.
/// </remarks>
***************
*** 115,119 ****
public void ResolvesToPageChildDefinitionIfEndsWithASPX()
{
! using(TestWebContext ctx = new TestWebContext("/Spring/Objects/Factory/Support/", "/testform.aspx"))
{
WebObjectDefinitionFactory factory = new WebObjectDefinitionFactory();
--- 115,119 ----
public void ResolvesToPageChildDefinitionIfEndsWithASPX()
{
! using(TestWebContext ctx = new TestWebContext("/Spring/Objects/Factory/Support", "/testform.aspx"))
{
WebObjectDefinitionFactory factory = new WebObjectDefinitionFactory();
|