Package com.lunivore.gameoflife.domain

Examples of com.lunivore.gameoflife.domain.Grid


    private static final String NL = System.getProperty("line.separator");

    @Test
    public void shouldRenderCellsAsCrosses() {
        StringRenderer renderer = new StringRenderer();
        Grid grid = mock(Grid.class);
        when(grid.getWidth()).thenReturn(5);
        when(grid.getHeight()).thenReturn(6);
        when(grid.hasLife(3, 4)).thenReturn(true);
        renderer.gridChanged(grid);
       
        assertThat(renderer.asString(), equalTo(
                "....." + NL +
                "....." + NL +
View Full Code Here

TOP

Related Classes of com.lunivore.gameoflife.domain.Grid

Copyright © 2018 www.massapicom. 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.