Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testOf2 (0.19 sec)

  1. src/archive/zip/reader_test.go

    	}
    	// Read in the archive.
    	_, err := NewReader(bytes.NewReader(data), int64(len(data)))
    	if err != nil {
    		t.Errorf("Error reading the archive: %v", err)
    	}
    }
    
    func TestFS(t *testing.T) {
    	for _, test := range []struct {
    		file string
    		want []string
    	}{
    		{
    			"testdata/unix.zip",
    			[]string{"hello", "dir/bar", "readonly"},
    		},
    		{
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/testing/fstest/63675.md

    [TestFS] now returns a structured error that can be unwrapped
    (via method `Unwrap() []error`). This allows inspecting errors
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 159 bytes
    - Viewed (0)
Back to top