I have a jUnit test (lets call it T1) in which I use an assertion. For that assertion to be of any value I need the validator for that assertion to be correct.
For the validator I have a test (T2) in another test Suite. Can I somehow make T2 a precondition for T1.
If that is not possible, would it be possible if T1 and T2 were in the same suite?
you can comment T1 with the explanation that it relies on T2 to pass and that if T2 also fails it should be fixed first before T1 is tackled