Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 11 of 11 for testBytesA (0.04 seconds)

  1. android/guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for AbstractByteHasher.
     *
     * @author Colin Decker
     */
    @NullUnmarked
    public class AbstractByteHasherTest extends TestCase {
    
      public void testBytes() {
        TestHasher hasher = new TestHasher(); // byte order insignificant here
        byte[] expected = {1, 2, 3, 4, 5, 6, 7, 8};
        hasher.putByte((byte) 1);
        hasher.putBytes(new byte[] {2, 3, 4, 5, 6});
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 21:52:12 GMT 2025
    - 3.9K bytes
    - Click Count (0)
Back to Top