Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestIndex (0.33 sec)

  1. src/bytes/bytes_test.go

    	for _, test := range testCases {
    		a := []byte(test.a)
    		actual := f(a, test.b)
    		if actual != test.i {
    			t.Errorf("%s(%q,%q) = %v; want %v", funcName, a, test.b, actual, test.i)
    		}
    	}
    }
    
    func TestIndex(t *testing.T)     { runIndexTests(t, Index, "Index", indexTests) }
    func TestLastIndex(t *testing.T) { runIndexTests(t, LastIndex, "LastIndex", lastIndexTests) }
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/util/ByteEncodableTest.java

            byte[] dest = new byte[5];
    
            // Expect IndexOutOfBoundsException from System.arraycopy
            assertThrows(IndexOutOfBoundsException.class, () -> {
                encodable.encode(dest, 3); // destIndex=3, len=3, dest.length=5. 3+3 > 5
            }, "Should throw IndexOutOfBoundsException if destination offset + length exceeds destination array bounds");
        }
    
        @Test
        void testEncodeNullSourceArray() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top