(t *testing.T)
| 62 | } |
| 63 | |
| 64 | func TestDebug_MultipleArguments(t *testing.T) { |
| 65 | // Test with various argument types |
| 66 | utils.Debug("int: %d, float: %f, string: %s, bool: %t", 42, 3.14, "hello", true) |
| 67 | utils.Debug("Multiple strings: %s %s %s", "one", "two", "three") |
| 68 | } |
| 69 | |
| 70 | func TestLogFilePath(t *testing.T) { |
| 71 | // Verify logs directory path is valid |