Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 0 additions & 80 deletions examples/springboot-postgresql/README.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ public void testStoreEntityAndRepository() {
List<Store> storesByName = storeRepository.findByName("Test Store");
log.info("Found {} stores by name", storesByName.size());
assertEquals(1, storesByName.size());
assertEquals("Test Store", storesByName.getFirst().getName());
assertEquals("Test Store", storesByName.get(0).getName());

log.info("Testing findByDescriptionContaining");
List<Store> storesByDescription = storeRepository.findByDescriptionContaining("demonstration");
log.info("Found {} stores by description", storesByDescription.size());
assertEquals(1, storesByDescription.size());
assertEquals("A test store for demonstration", storesByDescription.getFirst().getDescription());
assertEquals("A test store for demonstration", storesByDescription.get(0).getDescription());

log.info("Creating another store");
Store anotherStore =
Expand Down
21 changes: 0 additions & 21 deletions gradle/license-header.txt

This file was deleted.

Loading