Uses of Class
org.apache.camel.component.mock.MockEndpoint

Packages that use MockEndpoint
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.component.dataset A DataSet Endpoint for testing of endpoints using defined DataSets 
org.apache.camel.component.mock The Mock Component which is used for testing of routing and mediation rules. 
org.apache.camel.component.test A Test Endpoint for Pattern Based Testing 
 

Uses of MockEndpoint in org.apache.camel.builder
 

Methods in org.apache.camel.builder with parameters of type MockEndpoint
 NotifyBuilder NotifyBuilder.whenDoneNotSatisfied(MockEndpoint mock)
          Sets a condition when the provided mock is not satisfied based on Exchange being sent to it when they are done.
 NotifyBuilder NotifyBuilder.whenDoneSatisfied(MockEndpoint mock)
          Sets a condition when the provided mock is satisfied based on Exchange being sent to it when they are done.
 NotifyBuilder NotifyBuilder.whenReceivedNotSatisfied(MockEndpoint mock)
          Sets a condition when the provided mock is not satisfied based on Exchange being sent to it when they are received.
 NotifyBuilder NotifyBuilder.whenReceivedSatisfied(MockEndpoint mock)
          Sets a condition when the provided mock is satisfied based on Exchange being sent to it when they are received.
 

Uses of MockEndpoint in org.apache.camel.component.dataset
 

Subclasses of MockEndpoint in org.apache.camel.component.dataset
 class DataSetEndpoint
          Endpoint for DataSet.
 

Uses of MockEndpoint in org.apache.camel.component.mock
 

Fields in org.apache.camel.component.mock declared as MockEndpoint
protected  MockEndpoint AssertionClause.mock
           
 

Methods in org.apache.camel.component.mock that return MockEndpoint
static MockEndpoint MockEndpoint.resolve(CamelContext context, String uri)
          A helper method to resolve the mock endpoint of the given URI on the given context
 

Methods in org.apache.camel.component.mock with parameters of type MockEndpoint
protected  void AssertionClause.applyAssertionOn(MockEndpoint endpoint, int index, Exchange exchange)
          Performs any assertions on the given exchange
static void MockEndpoint.assertIsSatisfied(long timeout, TimeUnit unit, MockEndpoint... endpoints)
           
static void MockEndpoint.assertIsSatisfied(MockEndpoint... endpoints)
           
static void MockEndpoint.assertWait(long timeout, TimeUnit unit, MockEndpoint... endpoints)
           
static void MockEndpoint.expectsMessageCount(int count, MockEndpoint... endpoints)
           
 

Constructors in org.apache.camel.component.mock with parameters of type MockEndpoint
AssertionClause(MockEndpoint mock)
           
 

Uses of MockEndpoint in org.apache.camel.component.test
 

Subclasses of MockEndpoint in org.apache.camel.component.test
 class TestEndpoint
          A Test Endpoint is a Mock Endpoint for testing but it will pull all messages from the nested endpoint and use those as expected message body assertions.
 



Apache CAMEL