//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //Mario Foe Tests //Description: Test suite for classes that represent enemies of the Mario // Brothers. //CS 284 //Programmed by Jonathan Voris //for 2/14/06 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ package MarioFoes; class MarioTests { public static void main(String[] args) { Goomba g = new Goomba(); System.out.println(g); System.out.println(); } }