Browse Source

fix classname of EventBus.Test models

pull/675/head
Chen 6 years ago
parent
commit
8f5aa5c554
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