Skip to content

Commit

Permalink
fixup! add CancellationToken support
Browse files Browse the repository at this point in the history
  • Loading branch information
adamralph committed Feb 17, 2021
1 parent 8cafe48 commit 4143e04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NServiceBus.Testing.Fakes/TestableMessageSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public partial class TestableMessageSession : IMessageSession
{
/// <summary>
/// Creates a new <see cref="TestableMessageHandlerContext" /> instance.
/// Creates a new <see cref="TestableMessageSession" /> instance.
/// </summary>
public TestableMessageSession(IMessageCreator messageCreator = null)
{
Expand All @@ -26,12 +26,12 @@ public TestableMessageSession(IMessageCreator messageCreator = null)
public TimeoutMessage<object>[] TimeoutMessages => timeoutMessages.ToArray();

/// <summary>
/// A list of all messages sent by <see cref="IPipelineContext.Send" />.
/// A list of all messages sent by <see cref="IMessageSession.Send" />.
/// </summary>
public virtual SentMessage<object>[] SentMessages => sentMessages.ToArray();

/// <summary>
/// A list of all messages published by <see cref="IPipelineContext.Publish" />,
/// A list of all messages published by <see cref="IMessageSession.Publish" />,
/// </summary>
public virtual PublishedMessage<object>[] PublishedMessages => publishedMessages.ToArray();

Expand Down

0 comments on commit 4143e04

Please sign in to comment.