Skip to content

Commit

Permalink
updates rhino arc test
Browse files Browse the repository at this point in the history
  • Loading branch information
clairekuang committed Nov 5, 2024
1 parent d65d53a commit ae08faa
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using FluentAssertions;
using FluentAssertions;
using Moq;
using NUnit.Framework;
using Speckle.Converters.Common;
Expand All @@ -15,7 +15,6 @@ public class ArcToSpeckleConverterTests : MoqTest
public void Convert_ShouldConvertArcCorrectly()
{
// Arrange
var radius = 1.1d;
var mockPointConverter = Create<ITypedConverter<RG.Point3d, SOG.Point>>();
var mockPlaneConverter = Create<ITypedConverter<RG.Plane, SOG.Plane>>();
var mockBoxConverter = Create<ITypedConverter<RG.Box, SOG.Box>>();
Expand All @@ -33,11 +32,6 @@ public void Convert_ShouldConvertArcCorrectly()
var boundbox = Create<RG.BoundingBox>();

targetArc.Setup(x => x.Plane).Returns(targetPlane.Object);
targetArc.Setup(x => x.Radius).Returns(radius);
targetArc.Setup(x => x.StartAngle).Returns(radius);
targetArc.Setup(x => x.EndAngle).Returns(radius);
targetArc.Setup(x => x.Angle).Returns(radius);
targetArc.Setup(x => x.Length).Returns(radius);
targetArc.Setup(x => x.StartPoint).Returns(point3d.Object);
targetArc.Setup(x => x.MidPoint).Returns(point3d.Object);
targetArc.Setup(x => x.EndPoint).Returns(point3d.Object);
Expand Down

0 comments on commit ae08faa

Please sign in to comment.