Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CSharp/Tests/Tests1/Tests/TestLines.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void TestOpenPaths()
Paths64 subj = new(), subj_open = new(), clip = new();
Paths64 solution = new(), solution_open = new();

Assert.IsTrue(ClipperFileIO.LoadTestNum("..\\..\\..\\..\\..\\..\\Tests\\Lines.txt",
Assert.IsTrue(ClipperFileIO.LoadTestNum("../../../../../../Tests/Lines.txt",
i, subj, subj_open, clip, out ClipType clipType, out FillRule fillrule,
out long area, out int count, out _),
string.Format("Loading test {0} failed.", i));
Expand Down
2 changes: 1 addition & 1 deletion CSharp/Tests/Tests1/Tests/TestPolygons.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void TestClosedPaths()
Paths64 subj = new(), subj_open = new (), clip = new();
Paths64 solution = new(), solution_open = new();

if (!ClipperFileIO.LoadTestNum("..\\..\\..\\..\\..\\..\\Tests\\Polygons.txt",
if (!ClipperFileIO.LoadTestNum("../../../../../../Tests/Polygons.txt",
testNum, subj, subj_open, clip, out ClipType clipType, out FillRule fillrule,
out long storedArea, out int storedCount, out _))
{
Expand Down
2 changes: 1 addition & 1 deletion CSharp/Tests/Tests1/Tests/TestPolytree.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void TestPolytree2()
{
Paths64 subject = new(), subjectOpen = new(), clip = new();

Assert.IsTrue(ClipperFileIO.LoadTestNum("..\\..\\..\\..\\..\\..\\Tests\\PolytreeHoleOwner2.txt",
Assert.IsTrue(ClipperFileIO.LoadTestNum("../../../../../../Tests/PolytreeHoleOwner2.txt",
1, subject, subjectOpen, clip, out ClipType cliptype, out FillRule fillrule,
out _, out _, out _),
"Unable to read PolytreeHoleOwner2.txt");
Expand Down