Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unmarshalFunc (0.16 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/json_test.go

    }
    
    func testPrinter(t *testing.T, printer ResourcePrinter, unmarshalFunc func(data []byte, v interface{}) error) {
    	buf := bytes.NewBuffer([]byte{})
    
    	err := printer.PrintObj(&testData, buf)
    	if err != nil {
    		t.Fatal(err)
    	}
    	var poutput TestStruct
    	// Verify that given function runs without error.
    	err = unmarshalFunc(buf.Bytes(), &poutput)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top