Ejemplo n.º 1
0
        public void GetBishopAttTest()
        {
            ulong att1         = SlidingPieceUtils.GetBishopAtt(36, 0x8040000000440000);
            ulong expectedAtt1 = 0x0244280028440000;

            ulong att2         = SlidingPieceUtils.GetBishopAtt(22, 0x0004001000000010);
            ulong expectedAtt2 = 0x00000010A000A010;

            Assert.AreEqual(expectedAtt1, att1);
            Assert.AreEqual(expectedAtt2, att2);
        }