7071727374757677787980
/** * Returns the meta-data annotated on the driver class. */ DriverInfo getInfo() { DriverInfo info = getClass().getAnnotation(DriverInfo.class); if (info == null) { fail("There should be an annotation."); } return info; }