forked from ddrilling/AsbCloudServer
65 lines
2.1 KiB
C#
65 lines
2.1 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 ProcessMapPlanOscillationAnglesControllerTest :
|
|||
|
ProcessMapPlanBaseControllerTest<ProcessMapPlanOscillationAngles, ProcessMapPlanOscillationAnglesDto>
|
|||
|
{
|
|||
|
public ProcessMapPlanOscillationAnglesControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanOscillationAngles")
|
|||
|
{
|
|||
|
}
|
|||
|
private readonly ProcessMapPlanOscillationAnglesDto dto = new ProcessMapPlanOscillationAnglesDto()
|
|||
|
{
|
|||
|
IdWell = 1,
|
|||
|
DepthStart = 1,
|
|||
|
DepthEnd = 2,
|
|||
|
Id = 0,
|
|||
|
IdWellSectionType = 1,
|
|||
|
};
|
|||
|
|
|||
|
private readonly ProcessMapPlanOscillationAngles entity = new ProcessMapPlanOscillationAngles()
|
|||
|
{
|
|||
|
IdWell = 1,
|
|||
|
DepthEnd = 10,
|
|||
|
DepthStart = 2,
|
|||
|
Id = 0,
|
|||
|
IdWellSectionType = 1,
|
|||
|
IdAuthor = 1,
|
|||
|
IdEditor = 1,
|
|||
|
Creation = DateTimeOffset.UtcNow,
|
|||
|
};
|
|||
|
|
|||
|
[Fact]
|
|||
|
public async Task Get_actual_returns_success()
|
|||
|
{
|
|||
|
await Get(entity, dto);
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanOscillationAngles GetByNote(DbSet<ProcessMapPlanOscillationAngles> dbSet, ProcessMapPlanOscillationAnglesDto dto)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanOscillationAnglesDto GetByNote(IEnumerable<ProcessMapPlanOscillationAnglesDto> dtos, ProcessMapPlanOscillationAnglesDto dto)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanOscillationAngles? GetByWellId()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|