Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestResetDict (0.19 sec)

  1. src/compress/flate/inflate_test.go

    			t.Errorf("test %d, error mismatch: got %v, want io.ErrUnexpectedEOF", i, err)
    		}
    		if string(b) != v.output {
    			t.Errorf("test %d, output mismatch: got %q, want %q", i, b, v.output)
    		}
    	}
    }
    
    func TestResetDict(t *testing.T) {
    	dict := []byte("the lorem fox")
    	ss := []string{
    		"lorem ipsum izzle fo rizzle",
    		"the quick brown fox jumped over",
    	}
    
    	deflated := make([]bytes.Buffer, len(ss))
    	for i, s := range ss {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:23:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top