} else if (this.type == TESTER1) {
Tester1 Tstr1 = new Tester1("Tester1" + this.getName());
Tstr1.startTesting(); // this method only returns when the thread
// is done
} else if (this.type == TESTER2) {
Tester2 Tstr2 = new Tester2("Tester2" + this.getName());
Tstr2.startTesting(); // this method only returns when the thread
// is done
} else if (this.type == TESTER3) {
Tester3 Tstr3 = new Tester3("Tester3" + this.getName());
Tstr3.startTesting(); // this method only returns when the thread
// is done