/** * Tests tiny melon class for COM1204 * author bob * version 6/25/03 */ public class TestMelon { public static void main(String[] args) { Melon m = new Melon(); m.describe(); m.slice(); m.slice(); m.slice(); m.describe(); m.eat(); m.describe(); } }// TestMelon