Hi, there appears to be a bug in CamelSpringTestContextLoader::handleMockEndpointsAndSkip(..). It tests for MockEndpoints.class instead of MockEndpointsAndSkip.class. Line 433:
if (testClass.isAnnotationPresent(MockEndpoints.class)) { should be if (testClass.isAnnotationPresent(MockEndpointsAndSkip.class)) { Ralf