e28fd3e7c9
update to use the givenX_whenY_thenZ naming convention for tests Co-Authored-By: KevinGilmore <kpg102@gmail.com>
8 lines
165 B
Java
8 lines
165 B
Java
package com.baeldung.keycloak;
|
|
|
|
import org.springframework.data.repository.CrudRepository;
|
|
|
|
public interface CustomerDAO extends CrudRepository<Customer, Long> {
|
|
|
|
}
|