(t *testing.T)
| 56 | } |
| 57 | |
| 58 | func TestDebug_HandlesEmptyMessage(t *testing.T) { |
| 59 | // Debug should handle empty messages gracefully |
| 60 | utils.Debug("") |
| 61 | utils.Debug(" ") |
| 62 | } |
| 63 | |
| 64 | func TestDebug_MultipleArguments(t *testing.T) { |
| 65 | // Test with various argument types |