Browse Source

DATACMNS-829 - Removed test method accidentally included in the backport.

1.10.x
Oliver Gierke 10 years ago
parent
commit
fc76392643
  1. 12
      src/test/java/org/springframework/data/projection/ProxyProjectionFactoryUnitTests.java

12
src/test/java/org/springframework/data/projection/ProxyProjectionFactoryUnitTests.java

@ -223,18 +223,6 @@ public class ProxyProjectionFactoryUnitTests { @@ -223,18 +223,6 @@ public class ProxyProjectionFactoryUnitTests {
assertThat(excerpt.getId(), is(customer.id.toString()));
}
/**
* @see DATACMNS-89
*/
@Test
public void exposesProjectionInformationCorrectly() {
ProjectionInformation information = factory.getProjectionInformation(CustomerExcerpt.class);
assertThat(information.getType(), is(typeCompatibleWith(CustomerExcerpt.class)));
assertThat(information.isClosed(), is(true));
}
/**
* @see DATACMNS-829
*/

Loading…
Cancel
Save