MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / parseDateTimeStringRelativeW

Method parseDateTimeStringRelativeW

test/utils/TestDateTime.java:114–119  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

112 }
113
114 @Test
115 public void parseDateTimeStringRelativeW() {
116 long t = DateTime.parseDateTimeString("3w-ago", null);
117 long x = 3 * 7 * 3600 * 24 * 1000;
118 assertEquals(x, (System.currentTimeMillis() - t));
119 }
120
121 @Test
122 public void parseDateTimeStringRelativeN() {

Callers

nothing calls this directly

Calls 2

parseDateTimeStringMethod · 0.95
currentTimeMillisMethod · 0.45

Tested by

no test coverage detected