Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Method

Description

expectedMessageCount(int)

to define the expected message count on the endpoint

expectedMinimumMessageCount(int)

to define the minimum number of expected messages on the endpoint

expectedBodiesReceived(...)

to define the expected bodies that should be received (in order)

expectsAscending(Expression)

to add an expectation that messages are received in order using the given expression as an ordering Expression Expression to compare messages

expectsDescending(Expression)

to add an expectation that messages are received in order using the given expression as an ordering Expression Expression to compare messages

expectsNoDuplicates(Expression)

to add an expectation that no duplicate messages are received; using an Expression to calculate a unique identifier for each message. This could be something like the JMSMessageID if using JMS, or some unique reference number within the message.

...