import kotlin.test.Test import kotlin.test.BeforeTest import technology.zim.MazeFinder import technology.zim.World import technology.zim.data.Tile class MazeFinderTest { @BeforeTest fun setup() { World.setSize(10, 10) MazeFinder.primsAlgorithm() } //Top row must have at least one south connection and no north connections @Test fun topRowOutOfBoundsCheck() { var southExists = false for(x in 0..