Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for anotherValue (0.43 sec)

  1. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

        public void test_toLowerHyphen_nullValues() {
            Map<String, Object> source = new HashMap<>();
            source.put("AnotherKey", "anotherValue");
            source.put("ValidKey", "validValue");
    
            Map<String, Object> result = searchLogHelper.toLowerHyphen(source);
    
            assertEquals("anotherValue", result.get("another_key"));
            assertEquals("validValue", result.get("valid_key"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K 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: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
Back to top