mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-21 00:24:17 +00:00
📍Use lombok, reformat, and optimize the code (#1560)
* Use lombok, reformat, and optimize the code * Fix merge conflicts and some sonar issues Co-authored-by: va1m <va1m@email.com>
This commit is contained in:
+2
-2
@@ -34,14 +34,14 @@ import org.junit.jupiter.api.Test;
|
||||
*
|
||||
* @author Jeroen Meulemeester
|
||||
*/
|
||||
public class SpellbookDaoImplTest extends BaseDaoTest<Spellbook, SpellbookDaoImpl> {
|
||||
class SpellbookDaoImplTest extends BaseDaoTest<Spellbook, SpellbookDaoImpl> {
|
||||
|
||||
public SpellbookDaoImplTest() {
|
||||
super(Spellbook::new, new SpellbookDaoImpl());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFindByName() {
|
||||
void testFindByName() {
|
||||
final var dao = getDao();
|
||||
final var allBooks = dao.findAll();
|
||||
for (final var book : allBooks) {
|
||||
|
||||
Reference in New Issue
Block a user