Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/io/io_test.go

    	rb.WriteString("hello, world.")
    	CopyBuffer(wb, rb, make([]byte, 1)) // Tiny buffer to keep it honest.
    	if wb.String() != "hello, world." {
    		t.Errorf("CopyBuffer did not work properly")
    	}
    }
    
    func TestCopyBufferNil(t *testing.T) {
    	rb := new(Buffer)
    	wb := new(Buffer)
    	rb.WriteString("hello, world.")
    	CopyBuffer(wb, rb, nil) // Should allocate a buffer.
    	if wb.String() != "hello, world." {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top