Add unit tests for Utils::toHex

This commit is contained in:
Michael Lynch
2026-04-24 19:37:21 +00:00
parent 9a1be5386d
commit 5e03c00397
7 changed files with 147 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#pragma once
// Mock Stream class for native testing
// Provides minimal interface needed by Utils.h
class Stream {
public:
virtual void print(char c) {}
virtual void print(const char* str) {}
};