tcAt builds a minimal HTTP test case whose request timestamp is `t`.
(t time.Time)
| 9 | |
| 10 | // tcAt builds a minimal HTTP test case whose request timestamp is `t`. |
| 11 | func tcAt(t time.Time) *models.TestCase { |
| 12 | return &models.TestCase{ |
| 13 | Kind: models.HTTP, |
| 14 | HTTPReq: models.HTTPReq{Timestamp: t}, |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | // TestStartupMockCutoff pins the startup-mock exemption boundary used by |
| 19 | // RemoveUnusedMocks: it must be the (models.StartupMockTestCaseWindow+1)-th test case |
no outgoing calls
no test coverage detected