Reactivate EclipseLink integration test.

This commit is contained in:
Oliver Gierke
2010-12-23 16:03:47 +01:00
parent d3e55886aa
commit 4be2ac9f5a
3 changed files with 26 additions and 7 deletions

View File

@@ -15,20 +15,19 @@
*/
package org.springframework.data.jpa.repository;
import org.junit.Ignore;
import org.springframework.data.jpa.repository.sample.UserRepository;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
/**
* Testcase to run {@link UserRepository} integration tests on top of
* EclipseLink. So far not running as of an EclipseLink bug.
* EclipseLink.
*
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=312132
* @author Oliver Gierke
*/
// @ContextConfiguration(value = "classpath:eclipselink.xml", inheritLocations =
// true)
@Ignore
@DirtiesContext
@ContextConfiguration(value = "classpath:eclipselink.xml", inheritLocations = true)
public class EclipseLinkNamespaceUserRepositoryTests extends
NamespaceUserRepositoryTests {