From 38593ea36cdca0f6774f31e483e6be1aa6126fa9 Mon Sep 17 00:00:00 2001 From: Stephan Date: Wed, 23 Jan 2013 09:41:00 -0100 Subject: [PATCH] Tests.Routing - rename some tests --- ...rByAliasTests.cs => ContentFinderByAliasTests.cs} | 2 +- ...{FinderByIdTests.cs => ContentFinderByIdTests.cs} | 2 +- ....cs => ContentFinderByNiceUrlAndTemplateTests.cs} | 2 +- ...iceUrlTests.cs => ContentFinderByNiceUrlTests.cs} | 2 +- ....cs => ContentFinderByNiceUrlWithDomainsTests.cs} | 2 +- ...ryTests.cs => ContentFinderByPageIdQueryTests.cs} | 2 +- src/Umbraco.Tests/Umbraco.Tests.csproj | 12 ++++++------ 7 files changed, 12 insertions(+), 12 deletions(-) rename src/Umbraco.Tests/Routing/{FinderByAliasTests.cs => ContentFinderByAliasTests.cs} (92%) rename src/Umbraco.Tests/Routing/{FinderByIdTests.cs => ContentFinderByIdTests.cs} (91%) rename src/Umbraco.Tests/Routing/{FinderByNiceUrlAndTemplateTests.cs => ContentFinderByNiceUrlAndTemplateTests.cs} (92%) rename src/Umbraco.Tests/Routing/{FinderByNiceUrlTests.cs => ContentFinderByNiceUrlTests.cs} (95%) rename src/Umbraco.Tests/Routing/{FinderByNiceUrlWithDomainsTests.cs => ContentFinderByNiceUrlWithDomainsTests.cs} (98%) rename src/Umbraco.Tests/Routing/{FinderByPageIdQueryTests.cs => ContentFinderByPageIdQueryTests.cs} (93%) diff --git a/src/Umbraco.Tests/Routing/FinderByAliasTests.cs b/src/Umbraco.Tests/Routing/ContentFinderByAliasTests.cs similarity index 92% rename from src/Umbraco.Tests/Routing/FinderByAliasTests.cs rename to src/Umbraco.Tests/Routing/ContentFinderByAliasTests.cs index 8c72a9ddf4..71e81c7c77 100644 --- a/src/Umbraco.Tests/Routing/FinderByAliasTests.cs +++ b/src/Umbraco.Tests/Routing/ContentFinderByAliasTests.cs @@ -5,7 +5,7 @@ using Umbraco.Web.Routing; namespace Umbraco.Tests.Routing { [TestFixture] - public class FinderByAliasTests : BaseRoutingTest + public class ContentFinderByAliasTests : BaseRoutingTest { public override void Initialize() { diff --git a/src/Umbraco.Tests/Routing/FinderByIdTests.cs b/src/Umbraco.Tests/Routing/ContentFinderByIdTests.cs similarity index 91% rename from src/Umbraco.Tests/Routing/FinderByIdTests.cs rename to src/Umbraco.Tests/Routing/ContentFinderByIdTests.cs index 91c8e9d249..7981a9f06b 100644 --- a/src/Umbraco.Tests/Routing/FinderByIdTests.cs +++ b/src/Umbraco.Tests/Routing/ContentFinderByIdTests.cs @@ -7,7 +7,7 @@ using umbraco.cms.businesslogic.template; namespace Umbraco.Tests.Routing { [TestFixture] - public class FinderByIdTests : BaseRoutingTest + public class ContentFinderByIdTests : BaseRoutingTest { /// /// We don't need a db for this test, will run faster without one diff --git a/src/Umbraco.Tests/Routing/FinderByNiceUrlAndTemplateTests.cs b/src/Umbraco.Tests/Routing/ContentFinderByNiceUrlAndTemplateTests.cs similarity index 92% rename from src/Umbraco.Tests/Routing/FinderByNiceUrlAndTemplateTests.cs rename to src/Umbraco.Tests/Routing/ContentFinderByNiceUrlAndTemplateTests.cs index 6b00c2dddc..745f0d2bb5 100644 --- a/src/Umbraco.Tests/Routing/FinderByNiceUrlAndTemplateTests.cs +++ b/src/Umbraco.Tests/Routing/ContentFinderByNiceUrlAndTemplateTests.cs @@ -7,7 +7,7 @@ using umbraco.cms.businesslogic.template; namespace Umbraco.Tests.Routing { [TestFixture] - public class FinderByNiceUrlAndTemplateTests : BaseRoutingTest + public class ContentFinderByNiceUrlAndTemplateTests : BaseRoutingTest { public override void Initialize() { diff --git a/src/Umbraco.Tests/Routing/FinderByNiceUrlTests.cs b/src/Umbraco.Tests/Routing/ContentFinderByNiceUrlTests.cs similarity index 95% rename from src/Umbraco.Tests/Routing/FinderByNiceUrlTests.cs rename to src/Umbraco.Tests/Routing/ContentFinderByNiceUrlTests.cs index 4fb0817f07..269ae66845 100644 --- a/src/Umbraco.Tests/Routing/FinderByNiceUrlTests.cs +++ b/src/Umbraco.Tests/Routing/ContentFinderByNiceUrlTests.cs @@ -8,7 +8,7 @@ using umbraco.cms.businesslogic.template; namespace Umbraco.Tests.Routing { [TestFixture] - public class FinderByNiceUrlTests : BaseRoutingTest + public class ContentFinderByNiceUrlTests : BaseRoutingTest { public override void Initialize() { diff --git a/src/Umbraco.Tests/Routing/FinderByNiceUrlWithDomainsTests.cs b/src/Umbraco.Tests/Routing/ContentFinderByNiceUrlWithDomainsTests.cs similarity index 98% rename from src/Umbraco.Tests/Routing/FinderByNiceUrlWithDomainsTests.cs rename to src/Umbraco.Tests/Routing/ContentFinderByNiceUrlWithDomainsTests.cs index 0e7cdf88f3..2897e9662d 100644 --- a/src/Umbraco.Tests/Routing/FinderByNiceUrlWithDomainsTests.cs +++ b/src/Umbraco.Tests/Routing/ContentFinderByNiceUrlWithDomainsTests.cs @@ -12,7 +12,7 @@ using System.Configuration; namespace Umbraco.Tests.Routing { [TestFixture] - public class FinderByNiceUrlWithDomainsTests : BaseRoutingTest + public class ContentFinderByNiceUrlWithDomainsTests : BaseRoutingTest { public override void Initialize() { diff --git a/src/Umbraco.Tests/Routing/FinderByPageIdQueryTests.cs b/src/Umbraco.Tests/Routing/ContentFinderByPageIdQueryTests.cs similarity index 93% rename from src/Umbraco.Tests/Routing/FinderByPageIdQueryTests.cs rename to src/Umbraco.Tests/Routing/ContentFinderByPageIdQueryTests.cs index 6a8e3c8e9c..5d96feec07 100644 --- a/src/Umbraco.Tests/Routing/FinderByPageIdQueryTests.cs +++ b/src/Umbraco.Tests/Routing/ContentFinderByPageIdQueryTests.cs @@ -8,7 +8,7 @@ using umbraco.cms.businesslogic.template; namespace Umbraco.Tests.Routing { [TestFixture] - public class FinderByPageIdQueryTests : BaseRoutingTest + public class ContentFinderByPageIdQueryTests : BaseRoutingTest { /// /// We don't need a db for this test, will run faster without one diff --git a/src/Umbraco.Tests/Umbraco.Tests.csproj b/src/Umbraco.Tests/Umbraco.Tests.csproj index f0cf2d870a..5acb8ab0e0 100644 --- a/src/Umbraco.Tests/Umbraco.Tests.csproj +++ b/src/Umbraco.Tests/Umbraco.Tests.csproj @@ -246,7 +246,7 @@ - + @@ -260,11 +260,11 @@ - - - - - + + + + +