Exemplo n.º 1
0
        public void NonExistingPathShouldReturnEmtpyArray()
        {
            var grid = GridCatalog.GridWithEnclosedCenterTile();
            var path = grid.GetPath(new Position(0, 0), new Position(4, 4));

            Assert.NotNull(path);
            Assert.Empty(path);
        }