Description:
JUnit suite runner There are basically three types of tests:
- Tests that extend from the olatTestCase (testcase loads a full olat before running the tests -- very slow and is an integration test)
- Tests that load their own little spring context with @ContextConfiguration (that's how it should be done)
- Tests that do not need any Spring context As tests with @ContextConfiguration can taint the context from olattestcase they must be placed on the end of the list!
Initial Date: 15.02.2010