Hi All: If I annotate a class S with net.jcip.annotations.NotThreadSafe which has @Test methods, and then declare a bunch of subclasses of S which also contain @Test methods.
When I run tests for all subclasses of S, will the Maven Surefire plugin: - Run all @Test methods from S in a single thread? - Run all @Test methods from subclasses of S in a single thread? Thank you, Gary
