16 lines
367 B
Java
16 lines
367 B
Java
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() {
|
|
}
|
|
} |