* @throws Exception
*/
@Test
public void testDao01() throws Exception {
long start = System.currentTimeMillis();
Rides rs = Rides.BERTRANGE_HOWALD;
Ride r = HowaldTunnelStatisticsDao.retrieveRideInformations(rs);
Assert.assertNotNull(r);
Assert.assertEquals(rs.getDriveWayCode(), r.getShortName());
Assert.assertNotNull(r.getDisplayName());
Assert.assertTrue(r.getCurrent() > 0);
Assert.assertTrue(r.getAverage() > 0);
Assert.assertTrue(r.getMaximum() > 0);
System.out.printf("Test 'testDao01' performed in %s ms\n", (System.currentTimeMillis() - start));