Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mixed_case (0.23 sec)

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

            String result = (String) method.invoke(keyMatchHelper, "JAVA");
            assertEquals("java", result);
    
            result = (String) method.invoke(keyMatchHelper, "Mixed_Case");
            assertEquals("mixed_case", result);
    
            result = (String) method.invoke(keyMatchHelper, (String) null);
            assertNull(result);
    
            result = (String) method.invoke(keyMatchHelper, "");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

            ScriptEngine mixedCase = scriptEngineFactory.getScriptEngine("TestEngine");
    
            assertNotNull(lowerCase);
            assertNotNull(upperCase);
            assertNotNull(mixedCase);
            assertEquals(testScriptEngine, lowerCase);
            assertEquals(testScriptEngine, upperCase);
            assertEquals(testScriptEngine, mixedCase);
        }
    
        // Test getName abstract method implementation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/NetbiosNameTest.java

            assertEquals(lowerCase, mockNetbiosName.getName());
    
            when(mockNetbiosName.getName()).thenReturn(mixedCase);
            assertEquals(mixedCase, mockNetbiosName.getName());
        }
    
        @Test
        @DisplayName("Should handle workstation service type")
        void testWorkstationServiceType() {
            // Given
            int workstationType = 0x00;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt

          return object : ForwardingSource(original) {
            override fun read(
              sink: Buffer,
              byteCount: Long,
            ): Long {
              val mixedCase = Buffer()
              val count = original.read(mixedCase, byteCount)
              sink.writeUtf8(mixedCase.readUtf8().uppercase())
              return count
            }
          }
        }
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/netbios/NameTest.java

            assertEquals("LOWERCASE", name.name);
        }
    
        @Test
        void constructor_withMixedCaseName_shouldConvertToUpperCase() {
            Name name = new Name(mockConfig, "MiXeDcAsE", 0x20, null);
            assertEquals("MIXEDCASE", name.name);
        }
    
        @Test
        void writeWireFormat_withDifferentOffsets_shouldWorkCorrectly() {
            Name name = new Name(mockConfig, "TEST", 0x20, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top