[TestFixture]public class LabTests : InMemoryTestFixture{ private IHandleProduct _handleProduct;
[SetUp] public async void SetUp() { _handleProduct = A.Fake<IHandleProduct>(); await InputQueueSendEndpoint.Send<IRegisterProduct>(new { ProductId = "product-id"}); }
[Test] public void Should_call_product_handler() { _handleProduct.CallsTo(x => x.Handle("product-id")).MustHaveHappened(); }
protected override void ConfigureInputQueueEndpoint(IInMemoryReceiveEndpointConfigurator configurator) { configurator.Consumer(() => new RegisterProductConsumer(_handleProduct)); }}public Task Consume(ConsumeContext<IRegisterProduct> context){ //not async... _handler.Handle(context.Message.ProductId);
return context.CompleteTask;}--
You received this message because you are subscribed to the Google Groups "masstransit-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to masstransit-dis...@googlegroups.com.
To post to this group, send email to masstrans...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/masstransit-discuss/d3f5d761-ab5a-4019-b516-d36adefa0c22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to masstransit-discuss+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to masstransit-dis...@googlegroups.com.
To post to this group, send email to masstrans...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/masstransit-discuss/d3f5d761-ab5a-4019-b516-d36adefa0c22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "masstransit-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to masstransit-dis...@googlegroups.com.
To post to this group, send email to masstrans...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/masstransit-discuss/97070079-244f-498f-824f-40dfd72d51b0%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to masstransit-discuss+unsub...@googlegroups.com.
To post to this group, send email to masstrans...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/masstransit-discuss/d3f5d761-ab5a-4019-b516-d36adefa0c22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "masstransit-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to masstransit-discuss+unsub...@googlegroups.com.
To post to this group, send email to masstrans...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to masstransit-discuss+unsub...@googlegroups.com.