am bc03c74c: am d968670d: Merge "Conservatively trim data usage stats." into ics-mr1 am: ac0fb9c578
Original change: undetermined Change-Id: Iab5982ba6fe59ee1f088376b4e4a022668d33671
This commit is contained in:
@@ -256,6 +256,10 @@ public class NetworkStatsHistoryTest extends AndroidTestCase {
|
||||
stats.recordData(TEST_START, TEST_START + DAY_IN_MILLIS, 24L, 24L);
|
||||
assertEquals(24, stats.size());
|
||||
|
||||
// try removing invalid data; should be no change
|
||||
stats.removeBucketsBefore(0 - DAY_IN_MILLIS);
|
||||
assertEquals(24, stats.size());
|
||||
|
||||
// try removing far before buckets; should be no change
|
||||
stats.removeBucketsBefore(TEST_START - YEAR_IN_MILLIS);
|
||||
assertEquals(24, stats.size());
|
||||
|
||||
Reference in New Issue
Block a user