diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-09 08:54:21 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-09 08:54:21 -0700 |
commit | 6f2ee87f545b26ed320aad94be5fd042c409f5f9 (patch) | |
tree | c959b1b4313cca1af3e2045f78c30f0240c4fbaa /src/DotNetOAuth.Test/Mocks/TestChannel.cs | |
parent | 4d3d57f1951644de1b11842008d153bad30ef009 (diff) | |
download | DotNetOpenAuth-6f2ee87f545b26ed320aad94be5fd042c409f5f9.zip DotNetOpenAuth-6f2ee87f545b26ed320aad94be5fd042c409f5f9.tar.gz DotNetOpenAuth-6f2ee87f545b26ed320aad94be5fd042c409f5f9.tar.bz2 |
Added some channel tests and fixed a bug.
Diffstat (limited to 'src/DotNetOAuth.Test/Mocks/TestChannel.cs')
-rw-r--r-- | src/DotNetOAuth.Test/Mocks/TestChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth.Test/Mocks/TestChannel.cs b/src/DotNetOAuth.Test/Mocks/TestChannel.cs index 1920a38..632257e 100644 --- a/src/DotNetOAuth.Test/Mocks/TestChannel.cs +++ b/src/DotNetOAuth.Test/Mocks/TestChannel.cs @@ -25,7 +25,7 @@ namespace DotNetOAuth.Test.Mocks { }
protected override void SendDirectMessageResponse(IProtocolMessage response) {
- throw new NotImplementedException();
+ throw new NotImplementedException("SendDirectMessageResponse");
}
protected override void ReportErrorToUser(ProtocolException exception) {
|