| 56 | }; |
| 57 | |
| 58 | TEST_F(S3InterfaceServiceTest, GetResponseWithZeroRetry) { |
| 59 | string url = "https://s3-us-west-2.amazonaws.com/s3test.pivotal.io/whatever"; |
| 60 | HTTPHeaders headers; |
| 61 | |
| 62 | EXPECT_THROW(this->getResponseWithRetries(url, headers, 0), S3FailedAfterRetry); |
| 63 | } |
| 64 | |
| 65 | TEST_F(S3InterfaceServiceTest, GetResponseWithTwoRetries) { |
| 66 | string url = "https://s3-us-west-2.amazonaws.com/s3test.pivotal.io/whatever"; |
nothing calls this directly
no test coverage detected