Package main.ch.morrolan.gibb.snake

Examples of main.ch.morrolan.gibb.snake.GameGrid.endPoint()


    @Test
    public void endPoint() {
        GameGrid gg;

        gg = gameGrid1();
        assertEquals(new Point(10, 5), gg.endPoint());

        gg = gameGrid2();
        assertEquals(new Point(9, 9), gg.endPoint());
    }
View Full Code Here


        gg = gameGrid1();
        assertEquals(new Point(10, 5), gg.endPoint());

        gg = gameGrid2();
        assertEquals(new Point(9, 9), gg.endPoint());
    }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.