HHH-17772 add additional permutation to test

This commit is contained in:
Gavin King 2024-02-23 23:51:45 +01:00
parent 3539551305
commit df79c4491a
1 changed files with 6 additions and 0 deletions

View File

@ -26,6 +26,9 @@ public interface BookAuthorRepository {
@Find
Book book(String isbn);
@Find
Author author(String ssn);
@Find
Book byTitleAndDate(String title, LocalDate publicationDate);
@ -56,6 +59,9 @@ public interface BookAuthorRepository {
@Save
void createOrUpdate(Book book);
@Query("from Book where title = :title")
Book bookWithTitle(String title);
@Query("from Book where title like :title")
List<Book> books0(String title);