MCPcopy Create free account
hub / github.com/dropbox/dbxcli / decodeShareLinkOperationOutput

Function decodeShareLinkOperationOutput

cmd/share_link_json_test.go:394–401  ·  view source on GitHub ↗
(t *testing.T, data []byte)

Source from the content-addressed store, hash-verified

392}
393
394func decodeShareLinkOperationOutput[I, R any](t *testing.T, data []byte) shareLinkOperationOutputForTest[I, R] {
395 t.Helper()
396 got := decodeShareLinkOperationOutputWithWarnings[I, R](t, data)
397 if len(got.Warnings) != 0 {
398 t.Fatalf("warnings = %+v, want empty", got.Warnings)
399 }
400 return got
401}
402
403func decodeShareLinkOperationOutputWithWarnings[I, R any](t *testing.T, data []byte) shareLinkOperationOutputForTest[I, R] {
404 t.Helper()

Tested by

no test coverage detected