I am using JUnit 3 and I have a test class which had 4 test methods. CLass A: test1() test2() test3() test4()
Now I have written another test class B, which has the following methods: test10() test11() test12()
Now, test10() requires test1() (of class A) as a pre requisite. SO I would like to run only test1() from Class A, when inside test10() of class B.
Could someone please hep me with this?
Thanks and regards, Sunny