Files
joplin/packages/whisper-voice-typing/cpp/utils/testing.cpp
T
2026-02-04 10:03:02 +00:00

10 lines
193 B
C++

#include "testing.hpp"
void fail(const std::string& message) {
throw std::runtime_error(message);
}
void logTestPass(const std::string& message) {
LOGI("Test PASS: %s", message.c_str());
}