Resolved discussions.

This commit is contained in:
Ali Dehghani 2019-05-13 06:54:21 +04:30
parent f7f6bbe79b
commit 0d46cd91b8
2 changed files with 6 additions and 8 deletions

View File

@ -30,13 +30,11 @@ public class ProgrammaticEmployeesUnitTest {
public void whenAddEmployee_thenGetEmployee() throws SQLException {
Employee emp = new Employee(1, "john");
employeeDao.add(emp);
assertEquals(1, employeeDao.findAll()
.size());
assertEquals(1, employeeDao.findAll().size());
}
@Test
public void whenGetEmployees_thenEmptyList() throws SQLException {
assertEquals(0, employeeDao.findAll()
.size());
assertEquals(0, employeeDao.findAll().size());
}
}