Renamed tests to match renaming of classes.

This commit is contained in:
David Montag
2011-03-28 18:51:14 -07:00
parent f958f38e05
commit b3bf8a4331
3 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ import static org.junit.Assert.assertNull;
@ContextConfiguration(locations = {"classpath:org/springframework/data/graph/neo4j/support/Neo4jGraphPersistenceTest-context.xml",
"classpath:org/springframework/data/graph/neo4j/support/IndexingNodeTypeStrategyOverride-context.xml"})
@TestExecutionListeners({CleanContextCacheTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, TransactionalTestExecutionListener.class})
public class IndexingNodeTypeStrategyTest {
public class IndexingTypeRepresentationStrategyTest {
@Autowired
private GraphDatabaseService graphDatabaseService;

View File

@@ -20,7 +20,7 @@ import static org.junit.Assert.assertEquals;
@ContextConfiguration(locations = {"classpath:org/springframework/data/graph/neo4j/support/Neo4jGraphPersistenceTest-context.xml",
"classpath:org/springframework/data/graph/neo4j/support/NoopNodeTypeStrategyOverride-context.xml"})
@TestExecutionListeners({CleanContextCacheTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, TransactionalTestExecutionListener.class})
public class NoopNodeTypeStrategyTest {
public class NoopTypeRepresentationStrategyTest {
@Autowired
private GraphDatabaseContext graphDatabaseContext;

View File

@@ -44,7 +44,7 @@ import static org.junit.Assert.assertEquals;
@ContextConfiguration(locations = {"classpath:org/springframework/data/graph/neo4j/support/Neo4jGraphPersistenceTest-context.xml",
"classpath:org/springframework/data/graph/neo4j/support/SubReferenceNodeTypeStrategyOverride-context.xml"})
@TestExecutionListeners({CleanContextCacheTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, TransactionalTestExecutionListener.class})
public class SubReferenceNodeTypeStrategyTest {
public class SubReferenceTypeRepresentationStrategyTest {
protected final Log log = LogFactory.getLog(getClass());