Skip to content
Snippets Groups Projects
Commit 3a8ee91b authored by Jiří Mlejnek's avatar Jiří Mlejnek
Browse files

Add imports and constants

parent 275b559f
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ import static org.junit.jupiter.api.Assertions.assertSame;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.when;
 
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
 
......@@ -26,6 +27,10 @@ import eu.profinit.education.flightlog.to.PersonTo;
@ExtendWith(MockitoExtension.class)
class PersonServiceTest {
 
private static final List<String> PERSON_ROLES = Arrays.asList("PILOT");
private static final String PERSON_LAST_NAME = "Spoustová";
private static final String PERSON_FIRST_NAME = "Kamila";
@Mock
private PersonRepository personRepository;
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment