Skip to content

Commit

Permalink
test geometry with extra large setting (#15600)
Browse files Browse the repository at this point in the history
  • Loading branch information
aparajit-pratap authored Nov 6, 2024
1 parent ff7e48a commit dfe1658
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion test/Libraries/WorkflowTests/GeometryDefectTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autodesk.DesignScript.Geometry;
Expand Down Expand Up @@ -587,6 +587,17 @@ public void NurbsSurfaceWeights_MAGN_7970()

}

[Test]
public void PolyCurveByPointsExtraLargeScaleSetting_Returns3Curves()
{
string openPath = Path.Combine(TestDirectory, @"core\PolycurveByPoints.dyn");
RunModel(openPath);

var polyCurve = GetPreviewValue("c730df73-7ce9-43c1-8f97-87608fb48e43") as PolyCurve;
Assert.IsNotNull(polyCurve);
Assert.AreEqual(3, polyCurve.NumberOfCurves);
}

[Test]
[Category("Failure")]
public void LargeModel_Intersection_MAGN_9320()
Expand Down

0 comments on commit dfe1658

Please sign in to comment.