Add unit tests for Utils::toHex

This commit is contained in:
Michael Lynch
2025-10-12 11:11:05 -04:00
parent 9a1be5386d
commit 5e03c00397
7 changed files with 147 additions and 0 deletions

10
test/mocks/Stream.h Normal file
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) {}
};