public void It_should_pass_the_value_to_the_value_interceptor()
 {
     InterceptingPart.GetExportedValue(OrderProcessorExportDefinition);
     MockInterceptor.Verify(p => p.Intercept(interceptedOrderProcessor));
 }
 public void It_should_only_invoke_the_interceptor_once()
 {
     MockInterceptor.Verify(p => p.Intercept(interceptedOrderProcessor), Times.Once());
 }