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.java187 public void factory_millis_long(long millis, long expectedSeconds, int expectedNanoOfSecond) { in factory_millis_long()
189 assertEquals(test.getSeconds(), expectedSeconds); in factory_millis_long() local
397 …public void factory_of_longTemporalUnit(long amount, TemporalUnit unit, long expectedSeconds, int … in factory_of_longTemporalUnit()
399 assertEquals(t.getSeconds(), expectedSeconds); in factory_of_longTemporalUnit() local
630 public void factory_parse(String text, long expectedSeconds, int expectedNanoOfSecond) { in factory_parse()
632 assertEquals(test.getSeconds(), expectedSeconds); in factory_parse() local
637 public void factory_parse_plus(String text, long expectedSeconds, int expectedNanoOfSecond) { in factory_parse_plus()
639 assertEquals(test.getSeconds(), expectedSeconds); in factory_parse_plus() local
644 public void factory_parse_minus(String text, long expectedSeconds, int expectedNanoOfSecond) { in factory_parse_minus()
657 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.java72 public void fromToMillis(long millisValue, long expectedSeconds, long expectedMicros) { in fromToMillis()