package conway_test import ( "testing" ) import ( . "github.com/meatballhat/box-o-sand/conway/go" ) func TestNewGameOfLifeIsNonEmpty(t *testing.T) { game := NewGameOfLife() if game.Height < 1 || game.Width < 1 { t.Fail() } }