Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for anotherValue (0.17 sec)

  1. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        @SuppressWarnings("deprecation")
        Boolean anotherTrue = new Boolean(true);
        @SuppressWarnings("deprecation")
        Boolean anotherFalse = new Boolean(false);
        list.set(0, anotherTrue);
        assertThat(list.get(0)).isSameInstanceAs(true);
        list.set(1, anotherFalse);
        assertThat(list.get(1)).isSameInstanceAs(false);
      }
    
      public void testCountTrue() {
        assertThat(Booleans.countTrue()).isEqualTo(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/BooleansTest.java

        @SuppressWarnings("deprecation")
        Boolean anotherTrue = new Boolean(true);
        @SuppressWarnings("deprecation")
        Boolean anotherFalse = new Boolean(false);
        list.set(0, anotherTrue);
        assertThat(list.get(0)).isSameInstanceAs(true);
        list.set(1, anotherFalse);
        assertThat(list.get(1)).isSameInstanceAs(false);
      }
    
      public void testCountTrue() {
        assertThat(Booleans.countTrue()).isEqualTo(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top