summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-15 18:04:41 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-15 18:04:41 -0700
commiteca38cd0d1d360d6d5ee3afbe3759a6efb6a5acf (patch)
treef0f3e84986b87d6302ce3e4de06a229d2ab835f8 /src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
parentdf342fb180ae32ba8ce3443862b38e02cdea8b8d (diff)
downloadDotNetOpenAuth-eca38cd0d1d360d6d5ee3afbe3759a6efb6a5acf.zip
DotNetOpenAuth-eca38cd0d1d360d6d5ee3afbe3759a6efb6a5acf.tar.gz
DotNetOpenAuth-eca38cd0d1d360d6d5ee3afbe3759a6efb6a5acf.tar.bz2
Renamed a couple of methods:
PrepareMessageForSending -> ProcessOutgoingMessage VerifyMessageAfterReceiving -> ProcessIncomingMessage
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
index 4afd2cf..e654f02 100644
--- a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
+++ b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
@@ -118,7 +118,7 @@ namespace DotNetOpenAuth.Test.Mocks {
/// </summary>
/// <param name="message">The message to replay.</param>
internal void Replay(IProtocolMessage message) {
- this.VerifyMessageAfterReceiving(CloneSerializedParts(message));
+ this.ProcessIncomingMessage(CloneSerializedParts(message));
}
/// <summary>
@@ -191,9 +191,9 @@ namespace DotNetOpenAuth.Test.Mocks {
return accessor.ReadFromResponseCore(response);
}
- protected override void VerifyMessageAfterReceiving(IProtocolMessage message) {
+ protected override void ProcessIncomingMessage(IProtocolMessage message) {
Channel_Accessor accessor = Channel_Accessor.AttachShadow(this.wrappedChannel);
- accessor.VerifyMessageAfterReceiving(message);
+ accessor.ProcessIncomingMessage(message);
}
/// <summary>