コード例 #1
0
        public void ChessToIndexNotationTest()
        {
            
            Assert.AreEqual(Notation.ChessToIndexNotation("a8"), "00");
            Assert.AreEqual(Notation.ChessToIndexNotation("h1"), "77");
            Assert.AreEqual(Notation.ChessToIndexNotation("a1"), "70");
            Assert.AreEqual(Notation.ChessToIndexNotation("h8"), "07");
            Assert.AreEqual(Notation.ChessToIndexNotation("d4"), "43");
 
        }