source code cleanup

This commit is contained in:
Tim Wundenberg
2021-07-16 23:21:30 +02:00
parent 5bf8228628
commit d9873ab8cc
12 changed files with 75 additions and 60 deletions

View File

@@ -7,7 +7,6 @@ namespace PointCloudWeb.Server.Tests.Services
{
public class ScanConverterServiceTest
{
[Theory]
[InlineData(2, 2, 2)]
[InlineData(2, 1, 1)]
@@ -22,19 +21,16 @@ namespace PointCloudWeb.Server.Tests.Services
[InlineData(0, 1, 1)]
[InlineData(1, 0, 1)]
[InlineData(1, 1, 1)]
[InlineData(-1, 1, 1)]
[InlineData(1, -1, 1)]
[InlineData(-1, -1, 1)]
[InlineData(-5, 12, 7)]
[InlineData(-5, -12, 7)]
[InlineData(-22, 13, 11)]
[InlineData(0, 0, -1)]
[InlineData(0, -1, -1)]
[InlineData(-1, 0, -1)]
[InlineData(-1, -1, -1)]
[InlineData(1, 1, -1)]
[InlineData(5, 12, -7)]
[InlineData(-1, 1, -1)]
@@ -70,7 +66,6 @@ namespace PointCloudWeb.Server.Tests.Services
var service = new ScanConverterService();
var point = service.Transform(scan);
Assert.Equal(expected, point);
}
}
}
}