| 22 | } |
| 23 | |
| 24 | engine::runtime::WordTimestamp word(const std::string & text, int64_t start, int64_t end) { |
| 25 | engine::runtime::WordTimestamp timestamp; |
| 26 | timestamp.word = text; |
| 27 | timestamp.span.start_sample = start; |
| 28 | timestamp.span.end_sample = end; |
| 29 | return timestamp; |
| 30 | } |
| 31 | |
| 32 | class MockVadSession final : public engine::runtime::IOfflineVoiceTaskSession { |
| 33 | public: |
no outgoing calls
no test coverage detected