using System; using System.Collections.Generic; using System.Linq; using System.Text; using Azimuth; namespace Lodestone.UnitTests.Solvers { public class TestCases { public void MostSimple() { Body bodyA = new Body(new Vector(0, 2), 0, 1.0, 0); Body bodyB = new Body(new Vector(0, 0), 0, 1.0, 0); } } }