public class TestStudentsDaoImpl {
private StudentsDao sDao = new StudentsDaoImpl();
@Test
public void testQueryAllStudents() {
List<Students> list = new ArrayList<Students>();
list = sDao.queryStudents();
for (Students s : list) {System.out.println(s.toString());}}}
private StudentsDao sDao = new StudentsDaoImpl();
@Test
public void testQueryAllStudents() {
List<Students> list = new ArrayList<Students>();
list = sDao.queryStudents();
for (Students s : list) {System.out.println(s.toString());}}}
2016-11-25