The idea in JUnit is that each test method is independent of the others. All
set up is done in setUp() (and undone in tearDown()) if needed. So the JUnit
way to do this is to set it up in setUp(). And I think we should stick to
the JUnit way since as you see it doesn't work otherwise :) Sounds like what
you have is one big test method.

On Mon, Oct 4, 2010 at 11:17 PM, Robin Anil <[email protected]> wrote:

> The temp folder gets deleted after each test. Its not getting preserved
> across tests. Thats why things are failing. Can you tell me how I can keep
> the dir for the entire duration of the Test File Suite?
>
>

Reply via email to