Browse Source

Merge pull request #32 from dotnet-architecture/dev

upd fork
pull/1934/head
Taras Kovalenko 6 years ago
committed by GitHub
parent
commit
17637141c0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/BuildingBlocks/EventBus/EventBus.Tests/TestIntegrationEventHandler.cs
  2. +2
    -2
      src/BuildingBlocks/EventBus/EventBus.Tests/TestIntegrationOtherEventHandler.cs

+ 2
- 2
src/BuildingBlocks/EventBus/EventBus.Tests/TestIntegrationEventHandler.cs View File

@ -6,11 +6,11 @@ using System.Threading.Tasks;
namespace EventBus.Tests namespace EventBus.Tests
{ {
public class TestIntegrationOtherEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
public class TestIntegrationEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
{ {
public bool Handled { get; private set; } public bool Handled { get; private set; }
public TestIntegrationOtherEventHandler()
public TestIntegrationEventHandler()
{ {
Handled = false; Handled = false;
} }


+ 2
- 2
src/BuildingBlocks/EventBus/EventBus.Tests/TestIntegrationOtherEventHandler.cs View File

@ -6,11 +6,11 @@ using System.Threading.Tasks;
namespace EventBus.Tests namespace EventBus.Tests
{ {
public class TestIntegrationEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
public class TestIntegrationOtherEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
{ {
public bool Handled { get; private set; } public bool Handled { get; private set; }
public TestIntegrationEventHandler()
public TestIntegrationOtherEventHandler()
{ {
Handled = false; Handled = false;
} }


Loading…
Cancel
Save