// the mere act of creating the recorder should have initialized
// all times to their correct values
assertTimes(expectedTimes);
// add a bogus value to the data repository
StringData stringData = new StringData("\"foo");
data.putValue("/Project/Time", new DoubleData(666, false));
data.putValue("/Non Project/Time", stringData);
// but we don't want it to show up.
expectedTimes.put("/Project", new Integer(0));
boolean timesMatch = false;