summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-06-27 07:10:26 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-06-27 07:10:26 -0700
commitbf77a99f29eac9c13b6cd7b3adb8302a3d82ac06 (patch)
tree2798bfc1258dacd8c8d7b0fe77185e3cc04eea7c
parent616185a2b17d29928bc7a2650d6850a2b37bba3e (diff)
downloadDotNetOpenAuth-bf77a99f29eac9c13b6cd7b3adb8302a3d82ac06.zip
DotNetOpenAuth-bf77a99f29eac9c13b6cd7b3adb8302a3d82ac06.tar.gz
DotNetOpenAuth-bf77a99f29eac9c13b6cd7b3adb8302a3d82ac06.tar.bz2
Fixed namespace in unit test project to match new namespace in core library.
-rw-r--r--src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj10
-rw-r--r--src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs (renamed from src/DotNetOpenAuth.Test/OAuthWrap/MessageFactoryTests.cs)4
-rw-r--r--src/DotNetOpenAuth.Test/OAuth2/OAuth2ChannelTests.cs (renamed from src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs)4
-rw-r--r--src/DotNetOpenAuth.Test/OAuth2/OAuth2TestBase.cs (renamed from src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapTestBase.cs)4
4 files changed, 11 insertions, 11 deletions
diff --git a/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj b/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj
index 7adf710..b2c0dd3 100644
--- a/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj
+++ b/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj
@@ -141,7 +141,7 @@
<Reference Include="log4net" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
<Reference Include="Moq" />
- <Reference Include="NUnit.Framework"/>
+ <Reference Include="NUnit.Framework" />
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core">
@@ -215,9 +215,9 @@
<Compile Include="Mocks\TestChannel.cs" />
<Compile Include="Mocks\TestMessage.cs" />
<Compile Include="Mocks\TestMessageFactory.cs" />
- <Compile Include="OAuthWrap\MessageFactoryTests.cs" />
- <Compile Include="OAuthWrap\OAuthWrapChannelTests.cs" />
- <Compile Include="OAuthWrap\OAuthWrapTestBase.cs" />
+ <Compile Include="OAuth2\MessageFactoryTests.cs" />
+ <Compile Include="OAuth2\OAuth2ChannelTests.cs" />
+ <Compile Include="OAuth2\OAuth2TestBase.cs" />
<Compile Include="OAuth\ChannelElements\HmacSha1SigningBindingElementTests.cs" />
<Compile Include="OAuth\ChannelElements\OAuthChannelTests.cs" />
<Compile Include="OAuth\ChannelElements\PlaintextSigningBindingElementTest.cs" />
@@ -346,7 +346,7 @@
<EmbeddedResource Include="OpenId\Discovery\xrdsdiscovery\xrds20dual.xml" />
</ItemGroup>
<ItemGroup>
- <Folder Include="OAuthWrap\ChannelElements\" />
+ <Folder Include="OAuth2\ChannelElements\" />
<Folder Include="OpenId\UI\" />
</ItemGroup>
<ItemGroup>
diff --git a/src/DotNetOpenAuth.Test/OAuthWrap/MessageFactoryTests.cs b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs
index 5fb45b6..67103a5 100644
--- a/src/DotNetOpenAuth.Test/OAuthWrap/MessageFactoryTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs
@@ -4,7 +4,7 @@
// </copyright>
//-----------------------------------------------------------------------
-namespace DotNetOpenAuth.Test.OAuthWrap {
+namespace DotNetOpenAuth.Test.OAuth2 {
using System;
using System.Collections.Generic;
using System.Linq;
@@ -18,7 +18,7 @@ namespace DotNetOpenAuth.Test.OAuthWrap {
/// <summary>
/// Verifies that the WRAP message types are recognized.
/// </summary>
- public class MessageFactoryTests : OAuthWrapTestBase {
+ public class MessageFactoryTests : OAuth2TestBase {
private readonly MessageReceivingEndpoint recipient = new MessageReceivingEndpoint("http://who", HttpDeliveryMethods.PostRequest);
private OAuthWrapAuthorizationServerChannel channel;
private IMessageFactory messageFactory;
diff --git a/src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs b/src/DotNetOpenAuth.Test/OAuth2/OAuth2ChannelTests.cs
index 20fd5a5..51d0656 100644
--- a/src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth2/OAuth2ChannelTests.cs
@@ -4,7 +4,7 @@
// </copyright>
//-----------------------------------------------------------------------
-namespace DotNetOpenAuth.Test.OAuthWrap {
+namespace DotNetOpenAuth.Test.OAuth2 {
using System;
using System.Collections.Generic;
using System.Linq;
@@ -16,6 +16,6 @@ namespace DotNetOpenAuth.Test.OAuthWrap {
using NUnit.Framework;
[TestFixture]
- public class OAuthWrapChannelTests : OAuthWrapTestBase {
+ public class OAuth2ChannelTests : OAuth2TestBase {
}
}
diff --git a/src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapTestBase.cs b/src/DotNetOpenAuth.Test/OAuth2/OAuth2TestBase.cs
index 08c9da6..fa1ed40 100644
--- a/src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapTestBase.cs
+++ b/src/DotNetOpenAuth.Test/OAuth2/OAuth2TestBase.cs
@@ -4,12 +4,12 @@
// </copyright>
//-----------------------------------------------------------------------
-namespace DotNetOpenAuth.Test.OAuthWrap {
+namespace DotNetOpenAuth.Test.OAuth2 {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
- public class OAuthWrapTestBase : TestBase {
+ public class OAuth2TestBase : TestBase {
}
}