Re-enable and document @Ignore'd tests

Documented why static nested test cases in the spring-test module are
ignored, explaining that such "TestCase classes are run manually by the
enclosing test class". Prior to the migration to Gradle (i.e., with
Spring Build), these tests would not have been picked up by the test
suite since they end with a "TestCase" suffix instead of "Test" or
"Tests".

Re-enabled HibernateMultiEntityManagerFactoryIntegrationTests.

For the remaining tests that were disabled as a result of the migration
to Gradle, comments have been added to the @Ignore declarations.

Issue: SPR-8116, SPR-9398
This commit is contained in:
Sam Brannen
2012-12-05 10:31:31 +01:00
parent d12fbcc7ce
commit 025d111efc
12 changed files with 46 additions and 34 deletions

View File

@@ -436,7 +436,9 @@ public class CallbacksSecurityTests {
}
@Test
@Ignore // TODO SPR-8116 passes under Eclipse, but fails under Gradle with https://gist.github.com/1664133
@Ignore("passes under Eclipse, but fails under Gradle with https://gist.github.com/1664133")
// TODO SPR-8116 passes under Eclipse, but fails under Gradle with
// https://gist.github.com/1664133
public void testContainerPrivileges() throws Exception {
AccessControlContext acc = provider.getAccessControlContext();