mirror of
https://github.com/laurent22/joplin.git
synced 2026-05-07 20:02:45 +00:00
10 lines
193 B
C++
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());
|
|
}
|