clear deps

This commit is contained in:
Leonid Pershin
2025-10-17 06:29:23 +03:00
parent a96d4d8067
commit b816eb5aaf
21 changed files with 7 additions and 55 deletions

View File

@@ -1,4 +1,3 @@
using System.Linq;
using ChatBot.Models.Configuration;
using ChatBot.Services.HealthChecks;
using ChatBot.Services.Interfaces;
@@ -8,7 +7,6 @@ using Microsoft.Extensions.Diagnostics.HealthChecks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Moq;
using OllamaSharp.Models.Chat;
namespace ChatBot.Tests.Services.HealthChecks;
@@ -16,7 +14,6 @@ public class OllamaHealthCheckTests : UnitTestBase
{
private readonly Mock<ILogger<OllamaHealthCheck>> _loggerMock;
private readonly Mock<IOllamaClient> _ollamaClientMock;
private readonly Mock<IOptions<OllamaSettings>> _optionsMock;
private readonly OllamaHealthCheck _healthCheck;
public OllamaHealthCheckTests()
@@ -24,9 +21,6 @@ public class OllamaHealthCheckTests : UnitTestBase
_loggerMock = TestDataBuilder.Mocks.CreateLoggerMock<OllamaHealthCheck>();
_ollamaClientMock = TestDataBuilder.Mocks.CreateOllamaClientMock();
var ollamaSettings = TestDataBuilder.Configurations.CreateOllamaSettings();
_optionsMock = TestDataBuilder.Mocks.CreateOptionsMock(ollamaSettings);
_healthCheck = new OllamaHealthCheck(_ollamaClientMock.Object, _loggerMock.Object);
}