MCPcopy Create free account
hub / github.com/ClickHouse/ai-sdk-cpp / MockAnthropicStreamImpl

Class MockAnthropicStreamImpl

tests/unit/anthropic_stream_test.cpp:102–109  ·  view source on GitHub ↗

Mock Stream Implementation Tests

Source from the content-addressed store, hash-verified

100
101// Mock Stream Implementation Tests
102class 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
111class AnthropicStreamMockTest : public AnthropicTestFixture {};
112

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected