forked from ddrilling/AsbCloudServer
69 lines
2.3 KiB
C#
69 lines
2.3 KiB
C#
|
using AsbCloudApp.Data.ProcessMaps;
|
|||
|
using AsbCloudApp.Repositories;
|
|||
|
using AsbCloudApp.Requests;
|
|||
|
using AsbCloudApp.Services;
|
|||
|
using AsbCloudDb.Model.ProcessMaps;
|
|||
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
|||
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Parser;
|
|||
|
using AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan;
|
|||
|
using AsbCloudWebApi.IntegrationTests;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace AsbCloudWebApi.Controllers.ProcessMaps;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// РТК план обновление холостого хода
|
|||
|
/// </summary>
|
|||
|
public class ProcessMapPlanFunctionsUpgradeNoloadControllerTest :
|
|||
|
ProcessMapPlanBaseControllerTest<ProcessMapPlanFunctionsUpgradeNoload, ProcessMapPlanFunctionsUpgradeNoloadDto>
|
|||
|
{
|
|||
|
public ProcessMapPlanFunctionsUpgradeNoloadControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanFunctionsUpgradeNoload")
|
|||
|
{
|
|||
|
}
|
|||
|
private readonly ProcessMapPlanFunctionsUpgradeNoloadDto dto = new ProcessMapPlanFunctionsUpgradeNoloadDto()
|
|||
|
{
|
|||
|
IdWell = 1,
|
|||
|
DepthStart = 1,
|
|||
|
DepthEnd = 2,
|
|||
|
Id = 0,
|
|||
|
IdWellSectionType = 1,
|
|||
|
IdDeclineSocketColumn = true,
|
|||
|
Note = "1"
|
|||
|
};
|
|||
|
|
|||
|
private readonly ProcessMapPlanFunctionsUpgradeNoload entity = new ProcessMapPlanFunctionsUpgradeNoload()
|
|||
|
{
|
|||
|
IdWell = 1,
|
|||
|
DepthEnd = 10,
|
|||
|
DepthStart = 2,
|
|||
|
Id = 0,
|
|||
|
IdWellSectionType = 1,
|
|||
|
IdAuthor = 1,
|
|||
|
IdEditor = 1,
|
|||
|
Creation = DateTimeOffset.UtcNow,
|
|||
|
IdDeclineSocketColumn = true,
|
|||
|
Note = "1"
|
|||
|
};
|
|||
|
|
|||
|
[Fact]
|
|||
|
public async Task Get_actual_returns_success()
|
|||
|
{
|
|||
|
await Get(entity, dto);
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanFunctionsUpgradeNoload GetByNote(DbSet<ProcessMapPlanFunctionsUpgradeNoload> dbSet, ProcessMapPlanFunctionsUpgradeNoloadDto dto)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanFunctionsUpgradeNoloadDto GetByNote(IEnumerable<ProcessMapPlanFunctionsUpgradeNoloadDto> dtos, ProcessMapPlanFunctionsUpgradeNoloadDto dto)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanFunctionsUpgradeNoload? GetByWellId()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|