reader.retrieveObservations();
List<ValidObservation> obs = reader.getValidObservations();
boolean found = false;
for (ValidObservation ob : obs) {
SeriesType band = ob.getBand();
if (band == SeriesType.Johnson_V) {
double jd = ob.getDateInfo().getJulianDay();
assertEquals(2454001.8325, jd);
double mag = ob.getMag();
assertEquals(3.0544, mag);