public void TestIfMoveValidatorReturnsFalseWhitInvalidCommand() { bool result = MoveValidator.IsValidComandDir("Invalid"); Assert.IsFalse(result, "Incorrect true return of IsValidComandDir"); }
public void TestIfMoveValidatorReturnsTrueWhitValidCommand() { bool result = MoveValidator.IsValidComandDir("d"); Assert.IsTrue(result, "Incorrect false return of IsValidComandDir"); }