Exemplo n.º 1
0
        public void TestRightWhenPiece()
        {
            UnitType type = ParseStringToType.UnitType("piece");

            Assert.AreEqual(type, UnitType.piece);
        }
Exemplo n.º 2
0
        public void TestNotFound()
        {
            UnitType type = ParseStringToType.UnitType("Ll");

            Assert.AreEqual(type, UnitType.notFound);
        }
Exemplo n.º 3
0
        public void TestRightWheng()
        {
            UnitType type = ParseStringToType.UnitType("g");

            Assert.AreEqual(type, UnitType.g);
        }