Skip to content

Commit

Permalink
test: fix, omit
Browse files Browse the repository at this point in the history
  • Loading branch information
jirikostiha committed Oct 17, 2024
1 parent 436e799 commit 6e8aedd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/quality/SMath__Tests/Geometry2D/LineAndPointTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void Distance_FromPoints(double ax, double ay, double bx, double by,
[Theory]
[MemberData(nameof(TestData.ProjectionData), MemberType = typeof(TestData))]
public void Projection_FromPoints(((double X, double Y) P1, (double X, double Y) P2) segment,
(double X, double Y) point, (double X, double Y) projectedPoint)
(double X, double Y) point, (double X, double Y) projectedPoint, string message)
{
var evaluatetPoint = Line.And.Point.Projection.FromPoints(segment.P1, segment.P2, point);

Expand Down
2 changes: 0 additions & 2 deletions src/quality/SMath__Tests/Geometry2D/Point2Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ public void CoordinatesAtManhattanDistanceWithLimitsSmallerThanDistance_FourCoor
}

//[Fact]
[Fact]
public void CoordinatesUpToManhattanDistance()
{
var coords = Point2.CoordinatesUpToManhattanDistance((1, 1), 2).ToArray();
Expand All @@ -86,7 +85,6 @@ public void CoordinatesUpToManhattanDistance()
}

//[Fact]
[Fact]
public void CoordinatesUpToManhattanDistanceWithLimits()
{
var coords = Point2.CoordinatesUpToManhattanDistance((1, 1), 2, (0, -1), (2, 2)).ToArray();
Expand Down

0 comments on commit 6e8aedd

Please sign in to comment.