@Override
public void describeTo(Description description) {
StringBuilder text = new StringBuilder();
boolean first = true;
for (DatePoint[] each : pointsAsPairs()) {
DatePoint start = each[0];
DatePoint end = each[1];
if (!first) {
text.append(", ");
}
text.append(String.format("[%s, %s]", start, end));
first = false;