Details
-
Task
-
Status: Done
-
L3 - Default
-
Resolution: Fixed
-
None
-
None
-
None
Description
at the moment all our IT tests are annotated as
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"/it/it-applicationContext.xml"}
I am not sure this is requited. Please switch to normal JUnit runner if possible.
Background: there is no need to override normal JUnit lifecycle by spring if we don't really rely on it in tests. Since nothing is autowired in test cases themselves this is
most likely the case.