Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/Dafda.Tests/Producing/TestOutgoingMessageFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,18 @@
namespace Dafda.Tests.Producing
{
[Collection("Serializing")]
public class TestOutgoingMessageFactory
public class TestOutgoingMessageFactory : IClassFixture<DafdaActivitySourceFixture>
{
private readonly DafdaActivitySourceFixture _fixture;
private const string DummyTopic = "dummy_topic";
private const string DummyType = "dummy_type";

public TestOutgoingMessageFactory(DafdaActivitySourceFixture fixture)
{
_fixture = fixture;
_fixture.ResetDafdaActivitySource();
}

[Fact]
public async Task Can_create_outgoing_message_from_registry_with_expected_raw_message()
{
Expand Down
Loading