* BAEL-900 Guide to dynamic tests in Junit 5 * BAEL-900 Guide to Dynamic Tests in Junit 5 * Revert "BAEL-900 Guide to Dynamic Tests in Junit 5" This reverts commit d0d45c9067223347da20d0f2c80de391fcade38e. * BAEL-900 Guide to Dynamic Tests in Junit 5 * BAEL-900 Guide to dynamic tests in Junit 5 * removed unnecessary annotation * BAEL-900 unused imports removed
17 lines
321 B
Java
17 lines
321 B
Java
package com.baeldung.helpers;
|
|
|
|
public class EmployeeDao {
|
|
|
|
public Employee save(long id) {
|
|
return new Employee(id);
|
|
}
|
|
|
|
public Employee save(long id, String firstName) {
|
|
return new Employee(id, firstName);
|
|
}
|
|
|
|
public Employee update(Employee employee) {
|
|
return employee;
|
|
}
|
|
}
|