Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testNewReferenceArray_withNullArray (0.15 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AtomicsTest.java

        for (int i = 0; i < array.length; ++i) {
          assertEquals(array[i], refArray.get(i));
        }
        assertThrows(IndexOutOfBoundsException.class, () -> refArray.get(array.length));
      }
    
      public void testNewReferenceArray_withNullArray() throws Exception {
        assertThrows(NullPointerException.class, () -> Atomics.newReferenceArray(null));
      }
    
      public void testNullPointers() {
        NullPointerTester tester = new NullPointerTester();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top