(t *testing.T)
| 803 | } |
| 804 | |
| 805 | func Test_Client_SetBaseURL(t *testing.T) { |
| 806 | t.Parallel() |
| 807 | |
| 808 | client := New().SetBaseURL("http://example.com") |
| 809 | |
| 810 | require.Equal(t, "http://example.com", client.BaseURL()) |
| 811 | } |
| 812 | |
| 813 | func Test_Client_Invalid_URL(t *testing.T) { |
| 814 | t.Parallel() |
nothing calls this directly
no test coverage detected