示例#1
0
        public void InPositionRange_OutOfRange()
        {
            int x = 0,
                y = 0;

            var resolver = new CousinResolver();

            Assert.IsFalse(resolver.InPositionRange(x, y));
        }
示例#2
0
        public void InPositionRange_InRange()
        {
            int x = 1,
                y = 0;

            var resolver = new CousinResolver();

            Assert.IsTrue(resolver.InPositionRange(x, y));
        }