Re: Cactus/Junit Question

2008-01-04 Thread Petar Tahchiev
Hi Corry, and sorry for the late response. As Cactus being an extension of JUnit I think that the answer to both the questions is 'yes'. Kind regards Petar. 2007/12/28, Cory Lum [EMAIL PROTECTED]: For JUnit, instance variables are not shared among test methods. In other words, if I have an

Cactus/Junit Question

2007-12-28 Thread Cory Lum
For JUnit, instance variables are not shared among test methods. In other words, if I have an instance variable int x and set x=10 in testMethod1, testMethod2 doesn't know x=10. Does this apply for cactus? For JUnit, it's not guarantee that the test cases are executed in the order of the