Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testCreateStarted (0.12 seconds)

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

    @GwtCompatible
    @NullUnmarked
    public class StopwatchTest extends TestCase {
    
      private final FakeTicker ticker = new FakeTicker();
      private final Stopwatch stopwatch = new Stopwatch(ticker);
    
      public void testCreateStarted() {
        Stopwatch startedStopwatch = Stopwatch.createStarted();
        assertTrue(startedStopwatch.isRunning());
      }
    
      public void testCreateUnstarted() {
        Stopwatch unstartedStopwatch = Stopwatch.createUnstarted();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 6.3K bytes
    - Click Count (0)
Back to Top