mod: updated to create/destroy architecture

This commit is contained in:
Brian Matzon 2002-09-03 18:54:40 +00:00
parent 760cda8c47
commit c08e72d615
4 changed files with 195 additions and 23 deletions

View file

@ -71,8 +71,28 @@ public abstract class BasicTest {
*/
public BasicTest() {
al = new AL();
try {
al.create();
} catch (Exception e) {
e.printStackTrace();
return;
}
alc = new ALC();
try {
alc.create();
} catch (Exception e) {
e.printStackTrace();
return;
}
alut = new ALUT();
try {
alut.create();
} catch (Exception e) {
e.printStackTrace();
return;
}
}
/**