| 636 | TYPED_TEST(TestTransformInputStream, StressChunked) { this->TestStressChunked(); } |
| 637 | |
| 638 | static Result<std::shared_ptr<Buffer>> FailingTransform( |
| 639 | const std::shared_ptr<Buffer>& buf) { |
| 640 | return Status::UnknownError("Failed transform"); |
| 641 | } |
| 642 | |
| 643 | TEST(TestTransformInputStream, FailingTransform) { |
| 644 | auto src = Buffer::FromString("1234567890abcdefghi"); |
nothing calls this directly
no test coverage detected