We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I suggested using this
Oh, I totally missed that, sorry, indeed.
maybe you could code a helper to reuse it, something simple, as any test framework would do.
but maybe something like this
err := doBatchedRequestsForCollection(tt.args.auth, tt.args.method, tt.args.url, tt.args.batchSize, tt.args.recordMap); checkError(t, tt.wantErr, err, "doBatchedRequestsForCollection")
func checkError(t *testing.T, wantErr bool, err error, method string) { t.Helper() if wantErr && err != nil { return } if !wantErr && err == nil { return } t.Errorf("%s() error = %v, wantErr %v", method, err, tt.wantErr) }
But as there is no errors, there might have no need
@k-capehart replied this
I'll have to look into that, thank you. It would have to be part of a different PR though. Feel free to open an Issue or Discussion post about it.
Originally posted by @k-capehart in #45 (comment)
So I'm opening an issue
The text was updated successfully, but these errors were encountered:
SalesforceResult
No branches or pull requests
I suggested using this
Oh, I totally missed that, sorry, indeed.
maybe you could code a helper to reuse it, something simple, as any test framework would do.
but maybe something like this
But as there is no errors, there might have no need
@k-capehart replied this
Originally posted by @k-capehart in #45 (comment)
So I'm opening an issue
The text was updated successfully, but these errors were encountered: