Mock Stream Implementation Tests
| 92 | |
| 93 | // Mock Stream Implementation Tests |
| 94 | class MockStreamImpl { |
| 95 | public: |
| 96 | MOCK_METHOD(bool, is_active, (), (const)); |
| 97 | MOCK_METHOD(void, start, (), ()); |
| 98 | MOCK_METHOD(void, stop, (), ()); |
| 99 | MOCK_METHOD(std::string, read_next, (), ()); |
| 100 | MOCK_METHOD(bool, has_next, (), (const)); |
| 101 | }; |
| 102 | |
| 103 | class StreamMockTest : public OpenAITestFixture {}; |
| 104 |
nothing calls this directly
no outgoing calls
no test coverage detected