private Aluno createAluno() { Aluno aluno = new Aluno(); aluno.setName("Aluno 0"); aluno.setEmail("*****@*****.**"); aluno.setCreatedAt(new Date()); return aluno; }
private List<Aluno> updateListAluno(List<Aluno> alunos) { List<Aluno> updatedAlunos = new ArrayList<Aluno>(3); for (int i = 4; i <= 6; i++) { Aluno aluno = new Aluno(); aluno.setName("Aluno " + i); aluno.setEmail(alunos.get(i - 4).getEmail()); aluno.setCreatedAt(alunos.get(i - 4).getCreatedAt()); updatedAlunos.add(aluno); } return updatedAlunos; }
private List<Aluno> createListAluno() { List<Aluno> alunos = new ArrayList<Aluno>(3); for (int i = 1; i <= 3; i++) { Aluno aluno = new Aluno(); aluno.setName("Aluno " + i); aluno.setEmail("aluno" + i + "@google.com"); aluno.setCreatedAt(new Date()); alunos.add(aluno); } return alunos; }