Exemple #1
0
        public void NowTest()
        {
            MoveAction target   = new MoveAction(); // TODO: Initialize to an appropriate value
            Unit       unit     = null;             // TODO: Initialize to an appropriate value
            double     time     = 0F;               // TODO: Initialize to an appropriate value
            object     expected = null;             // TODO: Initialize to an appropriate value
            object     actual;

            actual = target.Now(unit, time);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
 public void NowTest()
 {
     MoveAction target = new MoveAction(); // TODO: Initialize to an appropriate value
     Unit unit = null; // TODO: Initialize to an appropriate value
     double time = 0F; // TODO: Initialize to an appropriate value
     object expected = null; // TODO: Initialize to an appropriate value
     object actual;
     actual = target.Now(unit, time);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }