feat: add t.Helper to request helper

This commit is contained in:
Muyao CHEN
2024-10-12 17:09:03 +02:00
parent 9b6282a101
commit ce3076047a
2 changed files with 5 additions and 1 deletions

View File

@ -50,6 +50,7 @@ func TestRequestID(t *testing.T) {
// Test with Request ID
_ = test.PerformRequest(
t,
r,
"GET",
"/example?a=100",
@ -58,7 +59,7 @@ func TestRequestID(t *testing.T) {
)
assert.Equal(t, "123", got)
res := test.PerformRequest(r, "GET", "/example?a=100", nil)
res := test.PerformRequest(t, r, "GET", "/example?a=100", nil)
assert.NotEqual(t, "", got)
assert.NoError(t, uuid.Validate(got))
assert.Equal(t, res.Header()[XRequestID][0], got)