Add unit tests for Utils::toHex
This commit is contained in:
10
test/mocks/Stream.h
Normal file
10
test/mocks/Stream.h
Normal 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) {}
|
||||
};
|
||||
Reference in New Issue
Block a user