using System.Collections.Generic; using Chernobyl.Mathematics.Movement; using NUnit.Framework; namespace Chernobyl.Mathematics.Geometry { [TestFixture, Description("Tests for the Arc type.")] public class ArcImplementationTests : ArcTests { protected override IArc CreateArc(IEnumerable points) { return new Arc(points); } protected override IArc CreateArc(IEnumerable lines) { return new Arc(lines); } } }