Esempio n. 1
0
        public void TestCornerValidation4()
        {
            CornerCommand cornerCommand = new CornerCommand("A 5");

            Assert.AreEqual(false, cornerCommand.Validate());
        }
Esempio n. 2
0
        public void TestCornerValidation1()
        {
            CornerCommand cornerCommand = new CornerCommand("5 5");

            Assert.AreEqual(true, cornerCommand.Validate());
        }