(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func Test_Proxy_Run(t *testing.T) { |
| 21 | builder := NewMockBuilder() |
| 22 | runner := NewMockRunner() |
| 23 | proxy := gin.NewProxy(builder, runner) |
| 24 | |
| 25 | config := &gin.Config{} |
| 26 | |
| 27 | proxy.Run(config) |
| 28 | defer proxy.Close() |
| 29 | } |
| 30 | |
| 31 | func Test_Proxying(t *testing.T) { |
| 32 | builder := NewMockBuilder() |
nothing calls this directly
no test coverage detected