Package com.wakaleo.gameoflife.domain

Examples of com.wakaleo.gameoflife.domain.Universe


    }

    @Test
    public void aUserCanObtainTheGridContentsAsAnArrayOfCells() {
        String seededGrid = "*.." + NEW_LINE + "*.." + NEW_LINE + ".*." + NEW_LINE + "";
        Universe theUniverse = new Universe(seededWith(seededGrid));

        Cell[][] expectedCells = new Cell[][]{
                {LIVE_CELL, DEAD_CELL, DEAD_CELL},
                {LIVE_CELL, DEAD_CELL, DEAD_CELL},
                {DEAD_CELL, LIVE_CELL, DEAD_CELL},
        };

        assertThat(theUniverse.getCells(), is(expectedCells));
    }
View Full Code Here

TOP

Related Classes of com.wakaleo.gameoflife.domain.Universe

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.