On Thu, 2002-11-14 at 10:38, Maarten Volders wrote:
> Still the same problem here, he's still complaining that i'm overriding
> setUp() but that I have to implement super.setUp(), but you can see
> clearly in my code that I implement that method.
> 
> Anyone with other suggestions??? I'm using Intellij 3.0 to run my unit
> test, but al my other unit tests run fine with it so I don't see the
> problem here.
>
>     public void setUp() {
>         try {
>             super.setUp(); // !!!!!!!!!!!
>         } catch(Exception e) {}
>     }
> 
>     public SearchXtantActionTest(String testName) {
>         super(testName);
>         setConfigFile("E:/CBB/xml/web/UI");
>     }

I'm pretty sure you need to move setConfigFile() to setUp() (after
super.setUp()) rather than putting it in the constructor.

Chris

-- 
Chris Winters ([EMAIL PROTECTED])
Java Developer


--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Reply via email to