Skip to content

Commit

Permalink
test: return basic info
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoPereyraDiaz committed Sep 21, 2023
1 parent d64263b commit ced2270
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@ IEventReceptor eventReceptor
);
}

[Fact]
public void Should_return_basic_info()
{
// Arrange
var eventReceptoMock = new Mock<IEventReceptor>();
var sut = CreateSut(eventReceptoMock.Object);

// Act
var result = sut.Get();

// Assert
Assert.NotNull(result);
}

[Fact]
public async Task Should_handler_raw_events()
{
Expand Down

0 comments on commit ced2270

Please sign in to comment.