Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testElapsed_whileRunning (1 sec)

  1. android/guava-tests/test/com/google/common/base/StopwatchTest.java

        stopwatch.reset();
        assertFalse(stopwatch.isRunning());
        ticker.advance(3);
        assertEquals(0, stopwatch.elapsed(NANOSECONDS));
      }
    
      public void testElapsed_whileRunning() {
        ticker.advance(78);
        stopwatch.start();
        assertEquals(0, stopwatch.elapsed(NANOSECONDS));
    
        ticker.advance(345);
        assertEquals(345, stopwatch.elapsed(NANOSECONDS));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top