- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for inputValue (0.95 sec)
-
src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java
void testValueConsistency() { // Given: Same input value int inputValue = 1000; int expectedMasked = inputValue & 0xFF; // 232 // When: Creating multiple NdrShort instances NdrShort ndrShort1 = new NdrShort(inputValue); NdrShort ndrShort2 = new NdrShort(inputValue); // Then: All should have same masked value
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
@CsvSource({ "0, 0", "1, 1", "2, 2", "8, 8", "255, -1" // byte 255 is -1 when printed as signed }) void testToStringWithDifferentOplockLevels(int inputValue, String expectedDisplay) throws Exception { byte oplockLevel = (byte) inputValue; Field oplockLevelField = Smb2OplockBreakNotification.class.getDeclaredField("oplockLevel"); oplockLevelField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
// Test with multiple inputs String[] inputs = { "a", "b", "c" }; CharMappingItem item = new CharMappingItem(1L, inputs, "output"); String inputsValue = item.getInputsValue(); assertEquals("a\nb\nc", inputsValue); } public void test_getInputsValue_withSingleInput() { // Test with single input String[] inputs = { "single" };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0)