import junit.framework.TestCase; public class LifeTestNukeAll extends TestCase { public static void main(String[] args) { Life l = new Life(new String[] { " ", " ", " *** ", " ", " " }); l = (Life) l.nextGeneration(); } public void testNukeAll() { } }