diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-06-13 17:35:51 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-06-13 17:35:51 -0700 |
commit | 1c99bf16c5b570cadcf27d0b9ce3d598d06b34ca (patch) | |
tree | 24c320ffe3ec59144669b817d717c22fecd2ffc4 /src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs | |
parent | f897ab5edf023ea6ca2b36b9075bd7dfbe3a6cde (diff) | |
parent | bdf648e967b58b7220f0de14a0f58ed8c7a93d41 (diff) | |
download | DotNetOpenAuth-1c99bf16c5b570cadcf27d0b9ce3d598d06b34ca.zip DotNetOpenAuth-1c99bf16c5b570cadcf27d0b9ce3d598d06b34ca.tar.gz DotNetOpenAuth-1c99bf16c5b570cadcf27d0b9ce3d598d06b34ca.tar.bz2 |
Merging in draft 16 compliance branch.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs index 0e82154..e6237ca 100644 --- a/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs +++ b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs @@ -122,18 +122,6 @@ namespace DotNetOpenAuth.Test.OAuth2 { Assert.IsInstanceOf(typeof(AccessTokenClientCredentialsRequest), request); } - [TestCase] - public void AccessTokenAssertionRequest() { - var fields = new Dictionary<string, string> { - { Protocol.client_id, "abc" }, - { Protocol.assertion_type, "abc" }, - { Protocol.assertion, "abc" }, - { Protocol.grant_type, "assertion" }, - }; - IDirectedProtocolMessage request = this.messageFactory.GetNewRequestMessage(this.recipient, fields); - Assert.IsInstanceOf(typeof(AccessTokenAssertionRequest), request); - } - #endregion } } |