- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for testNoop (0.15 sec)
-
android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java
} assertThat(map).containsExactlyEntriesIn(expected).inOrder(); } /** No-op test so that the class has at least one method, making Maven's test runner happy. */ public void testNoop() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StopwatchTest.java
} public void testStart_whileRunning() { stopwatch.start(); assertThrows(IllegalStateException.class, stopwatch::start); assertTrue(stopwatch.isRunning()); } public void testStop() { stopwatch.start(); assertSame(stopwatch, stopwatch.stop()); assertFalse(stopwatch.isRunning()); } public void testStop_new() { assertThrows(IllegalStateException.class, stopwatch::stop);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.1K bytes - Viewed (0) -
.github/workflows/build.yml
arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }} script: ./gradlew :android-test-app:connectedReleaseAndroidTest env: API_LEVEL: ${{ matrix.api-level }} testloom: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v5 - name: Configure JDK uses: actions/setup-java@v5 with:
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 07:15:58 UTC 2025 - 18.1K bytes - Viewed (0)