summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-06-19 17:08:30 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-06-20 08:43:08 -0700
commit0d3741fe631df59b30a7808a29294167f45cad39 (patch)
treea1a8922b9ac6efa7abd6c2a5c4bce364e3879d83 /src/DotNetOpenAuth.Test
parent0b5fd389ccc28193e0d014b123e23545a1bc5e2d (diff)
downloadDotNetOpenAuth-0d3741fe631df59b30a7808a29294167f45cad39.zip
DotNetOpenAuth-0d3741fe631df59b30a7808a29294167f45cad39.tar.gz
DotNetOpenAuth-0d3741fe631df59b30a7808a29294167f45cad39.tar.bz2
Implemented InteropHelper.SpreadSregToAX.
Diffstat (limited to 'src/DotNetOpenAuth.Test')
-rw-r--r--src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj1
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/InteropHelperTests.cs24
2 files changed, 25 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj b/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj
index 64b53f7..fa768a8 100644
--- a/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj
+++ b/src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj
@@ -196,6 +196,7 @@
<Compile Include="OpenId\Extensions\SimpleRegistration\ClaimsRequestTests.cs" />
<Compile Include="OpenId\Extensions\UI\UIRequestTests.cs" />
<Compile Include="OpenId\IdentifierTests.cs" />
+ <Compile Include="OpenId\InteropHelperTests.cs" />
<Compile Include="OpenId\Messages\AssociateDiffieHellmanRequestTests.cs" />
<Compile Include="OpenId\Messages\AssociateRequestTests.cs" />
<Compile Include="OpenId\Messages\AssociateUnsuccessfulResponseTests.cs" />
diff --git a/src/DotNetOpenAuth.Test/OpenId/InteropHelperTests.cs b/src/DotNetOpenAuth.Test/OpenId/InteropHelperTests.cs
new file mode 100644
index 0000000..cf34c72
--- /dev/null
+++ b/src/DotNetOpenAuth.Test/OpenId/InteropHelperTests.cs
@@ -0,0 +1,24 @@
+//-----------------------------------------------------------------------
+// <copyright file="InteropHelperTests.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.Test.OpenId {
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Text;
+ using Microsoft.VisualStudio.TestTools.UnitTesting;
+
+ [TestClass]
+ public class InteropHelperTests {
+ /// <summary>
+ /// Verifies that Sreg requests are correctly copied to axschema.org AX requests.
+ /// </summary>
+ [TestMethod]
+ public void SpreadSregToAX() {
+ Assert.Inconclusive("Not yet implemented.");
+ }
+ }
+}