From: mkersten Date: Tue, 27 Jul 2004 17:37:23 +0000 (+0000) Subject: added no-arg constructor for convenience X-Git-Tag: for_ajdt1_1_12~93 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=00882c7b5a504224c714175e5b70f1591ba0722f;p=aspectj.git added no-arg constructor for convenience --- diff --git a/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java b/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java index e672a701c..5f386a9dc 100644 --- a/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java +++ b/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java @@ -28,6 +28,10 @@ public class AjdeTestCase extends TestCase { protected TestBuildListener testerBuildListener = new TestBuildListener(); protected String currTestDataPath; + public AjdeTestCase() { + super(""); + } + public AjdeTestCase(String name) { super(name); }