diff options
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs b/src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs new file mode 100644 index 0000000..1f76e8f --- /dev/null +++ b/src/DotNetOpenAuth.Test/OAuthWrap/OAuthWrapChannelTests.cs @@ -0,0 +1,34 @@ +//----------------------------------------------------------------------- +// <copyright file="OAuthWrapChannelTests.cs" company="Andrew Arnott"> +// Copyright (c) Andrew Arnott. All rights reserved. +// </copyright> +//----------------------------------------------------------------------- + +namespace DotNetOpenAuth.Test.OAuthWrap { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; + using DotNetOpenAuth.Messaging; + using DotNetOpenAuth.OAuthWrap.ChannelElements; + using NUnit.Framework; + + [TestFixture] + public class OAuthWrapChannelTests : OAuthWrapTestBase { + private OAuthWrapChannel channel; + + public override void SetUp() { + base.SetUp(); + + this.channel = new OAuthWrapChannel(); + } + + /// <summary> + /// Verifies that the WRAP message types are initialized. + /// </summary> + [TestCase] + public void MessageFactory() { + // TODO: code here + } + } +} |