Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrobaert committed Sep 5, 2024
1 parent 4fcfbdf commit ae2130e
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions IntraLacosSampleTest/WeatherForecastControllerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,4 @@ public void Get_ShouldReturnDifferentWeatherForecastsEachTime()
// Assert
Assert.NotEqual(firstResult, secondResult); // Os resultados devem ser diferentes por causa do Random
}

[Fact]
public void Get_ShouldLogInformation()
{
// Act
_controller.Get();

// Assert
_loggerMock.Verify(
logger => logger.Log(
It.IsAny<LogLevel>(),
It.IsAny<EventId>(),
It.IsAny<object>(),
It.IsAny<Exception>(),
It.IsAny<Func<object, Exception, string>>()),
Times.AtLeastOnce
);
}
}

0 comments on commit ae2130e

Please sign in to comment.