Mock Stream Implementation Tests
| 100 | |
| 101 | // Mock Stream Implementation Tests |
| 102 | class MockAnthropicStreamImpl { |
| 103 | public: |
| 104 | MOCK_METHOD(bool, is_active, (), (const)); |
| 105 | MOCK_METHOD(void, start, (), ()); |
| 106 | MOCK_METHOD(void, stop, (), ()); |
| 107 | MOCK_METHOD(std::string, read_next, (), ()); |
| 108 | MOCK_METHOD(bool, has_next, (), (const)); |
| 109 | }; |
| 110 | |
| 111 | class AnthropicStreamMockTest : public AnthropicTestFixture {}; |
| 112 |
nothing calls this directly
no outgoing calls
no test coverage detected