use of com.baeldung.spring.data.es.model.Author in project tutorials by eugenp.
the class ElasticSearchIntegrationTest method givenArticleService_whenSaveArticle_thenIdIsAssigned.
@Test
public void givenArticleService_whenSaveArticle_thenIdIsAssigned() {
final List<Author> authors = asList(new Author("John Smith"), johnDoe);
Article article = new Article("Making Search Elastic");
article.setAuthors(authors);
article = articleService.save(article);
assertNotNull(article.getId());
}