Home
last modified time | relevance | path

Searched defs:expectedSeconds (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKDuration.java185 public void factory_millis_long(long millis, long expectedSeconds, int expectedNanoOfSecond) { in factory_millis_long()
187 assertEquals(test.getSeconds(), expectedSeconds); in factory_millis_long() local
395 …public void factory_of_longTemporalUnit(long amount, TemporalUnit unit, long expectedSeconds, int … in factory_of_longTemporalUnit()
397 assertEquals(t.getSeconds(), expectedSeconds); in factory_of_longTemporalUnit() local
628 public void factory_parse(String text, long expectedSeconds, int expectedNanoOfSecond) { in factory_parse()
630 assertEquals(test.getSeconds(), expectedSeconds); in factory_parse() local
635 public void factory_parse_plus(String text, long expectedSeconds, int expectedNanoOfSecond) { in factory_parse_plus()
637 assertEquals(test.getSeconds(), expectedSeconds); in factory_parse_plus() local
642 public void factory_parse_minus(String text, long expectedSeconds, int expectedNanoOfSecond) { in factory_parse_minus()
655 public void factory_parse_comma(String text, long expectedSeconds, int expectedNanoOfSecond) { in factory_parse_comma()
[all …]
/libcore/luni/src/test/java/libcore/android/system/
DStructTimevalTest.java70 public void fromToMillis(long millisValue, long expectedSeconds, long expectedMicros) { in fromToMillis()