diff options
Diffstat (limited to 'src/DotNetOAuth.Test/OAuth/ProtocolTests.cs')
-rw-r--r-- | src/DotNetOAuth.Test/OAuth/ProtocolTests.cs | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/DotNetOAuth.Test/OAuth/ProtocolTests.cs b/src/DotNetOAuth.Test/OAuth/ProtocolTests.cs deleted file mode 100644 index d72fcba..0000000 --- a/src/DotNetOAuth.Test/OAuth/ProtocolTests.cs +++ /dev/null @@ -1,34 +0,0 @@ -//-----------------------------------------------------------------------
-// <copyright file="ProtocolTests.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace DotNetOAuth.Test.OAuth {
- using DotNetOAuth.OAuth;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
-
- [TestClass]
- public class ProtocolTests {
- [TestMethod]
- public void Default() {
- Assert.AreSame(Protocol.V10, Protocol.Default);
- }
-
- [TestMethod]
- public void DataContractNamespace() {
- Assert.AreEqual("http://oauth.net/core/1.0/", Protocol.V10.DataContractNamespace);
- Assert.AreEqual("http://oauth.net/core/1.0/", Protocol.DataContractNamespaceV10);
- }
-
- [TestMethod]
- public void AuthorizationHeaderScheme() {
- Assert.AreEqual("OAuth", Protocol.V10.AuthorizationHeaderScheme);
- }
-
- [TestMethod]
- public void ParameterPrefix() {
- Assert.AreEqual("oauth_", Protocol.V10.ParameterPrefix);
- }
- }
-}
|