public class DatastoreUtilTest extends BaseModelTest {
@Test
public void testCountOverDateRange() {
DateTime now = DateTime.now();
Date d3 = now.toDateMidnight().toDate();
Date d2 = now.minusDays(1).toDateMidnight().toDate();
Date d1 = now.minusDays(2).toDateMidnight().toDate();
DailyUsageStats s1 = new DailyUsageStats(3L, 2L, 4L, 4L, d1);
DailyUsageStats s2 = new DailyUsageStats(3L, 2L, 4L, 4L, d2);