diff options
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/InteropHelperTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/InteropHelperTests.cs | 24 |
1 files changed, 24 insertions, 0 deletions
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."); + } + } +} |