import tester.*; // runs tests for the buddies problem public class Examples{ public Examples(){}; Person ann = new Person("Ann"); Person bob = new Person("Bob"); Person cole = new Person("Cole"); Person dan = new Person("Dan"); Person ed = new Person("Ed"); Person fay = new Person("Fay"); Person gabi = new Person("Gabi"); Person hank = new Person("Hank"); Person jan = new Person("Jan"); Person kim = new Person("Kim"); Person len = new Person("Len"); ILoBuddy mtlob = new MTLoBuddy(); void initData(){ // ann's buddies: ann.addBuddy(bob); ann.addBuddy(ed); ann.addBuddy(hank); // bob's buddies: // ... } void tearDown(){ ann.removeAll(); bob.removeAll(); // ... } void testMethodXYZ(Tester t){ // SETUP: initData(); // TEST: t.checkExpect(true, true); // any tests needed... // TEAR DOWN: tearDown(); } }