package com.schoolregistration.tests; import static org.junit.Assert.*; import org.junit.Test; import com.schoolregistration.dao.DataAccessException; import com.schoolregistration.dao.impl.JDBCStudentImpl; import com.schoolregistration.domain.Student; public class StudentTest { @Test public void testJDBCStudentImpl() { //fail("failed"); // try { // JDBCStudentImpl jdbcStudentImpl = new JDBCStudentImpl(); // Student student = new Student(1,"Gian","Lacerna","Quezon City","4162832"); // // assertEquals(jdbcStudentImpl.getStudent(1),student); // // } catch (DataAccessException e) { // //throw new DataAccessException("Sql exception",e); // } // } }