}
}
}
WaveAlgorithm waveAlgorithm = new WaveAlgorithm(colorSquareArr);
waveAlgorithm.calculate();
List<Point> pathCoordArr = waveAlgorithm.getPath();
for(Point point : pathCoordArr)
{
if (blockSquaresArr[point.y][point.x] == BLOCK_SQUARE) {
fail("Path between two points lays through block square y = " + point.y +