/** Test of sqlForbindelse method, of class dbConnection. */ @Test public void testSqlForbindelse() { System.out.println("sqlForbindelse"); dbConnection instance = new dbConnection(); Connection expResult = null; Connection result = instance.sqlForbindelse(); assertEquals(expResult, result); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); }
/** * Test of setUfærdigeTure method, of class dbConnection. * * @throws Exception */ @Test public void testSetUfærdigeTure() throws Exception { System.out.println("setUf\u00e6rdigeTure"); dbConnection instance = new dbConnection(); Ture[] expResult = null; Ture[] result = instance.setUfærdigeTure(); assertArrayEquals(expResult, result); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); }