Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestWriteErrors (0.1 sec)

  1. src/bufio/bufio_test.go

    	{1, 2, nil, io.ErrShortWrite},
    	{1, 1, nil, nil},
    	{0, 1, io.ErrClosedPipe, io.ErrClosedPipe},
    	{1, 2, io.ErrClosedPipe, io.ErrClosedPipe},
    	{1, 1, io.ErrClosedPipe, io.ErrClosedPipe},
    }
    
    func TestWriteErrors(t *testing.T) {
    	for _, w := range errorWriterTests {
    		buf := NewWriter(w)
    		_, e := buf.Write([]byte("hello world"))
    		if e != nil {
    			t.Errorf("Write hello to %v: %v", w, e)
    			continue
    		}
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Nov 01 21:52:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top