Package org.springframework.data.repository.sample

Examples of org.springframework.data.repository.sample.User


   * @see DATACMNS-376
   */
  @Test
  public void returnsPersistentEntityForProxiedClass() {

    User user = mock(User.class);
    assertThat(repositories.getPersistentEntity(user.getClass()), is(notNullValue()));
  }
View Full Code Here


   * @see DATACMNS-224
   */
  @Test
  public void emitsRepositoriesPopulatedEventIfPublisherConfigured() throws Exception {

    RepositoryPopulator populator = setUpReferenceAndInititalize(new User(), publisher);

    ApplicationEvent event = new RepositoriesPopulatedEvent(populator, repositories);
    verify(publisher, times(1)).publishEvent(event);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.repository.sample.User

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.