using System; using System.Collections.Generic; using System.Text; using NUnit.Framework; namespace SalsaModel.Tests { [TestFixture] public class TestPosture { [Test] public void TestWuChiOK() { BodyGeometry body = BodyGeometry.Andy(); SalsaMover mover = new SalsaMover(body, new Location(0,0,0)); Check.Posture(mover.Model, body); } } }