* Add Service Bus Message Test Scenario * change filename * add workflow test * save new unit test project (don't know why Guid have changed * use WorkfloInbox Message for ReceiveActivity and Worker * add test * add correlationId * add test with correlationId * saving sln * Fix project references * remove Moq librairies for UnitTests Projects * remove Moq and use NSubstitute --------- Co-authored-by: Jérémie DEVILLARD <jdevillard@users.noreply.github.com> Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com>
10 lines
335 B
C#
10 lines
335 B
C#
using Elsa.ServiceBusIntegrationTests.Helpers;
|
|
|
|
namespace Elsa.ServiceBusIntegrationTests.Contracts
|
|
{
|
|
public interface IServiceBusProcessorManager
|
|
{
|
|
public ServiceBusProcessorTest Get(string topic, string subscription);
|
|
public ServiceBusProcessorTest Init(string topic, string subscription);
|
|
}
|
|
} |