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