(t *testing.T)
| 242 | } |
| 243 | |
| 244 | func TestRelativePath(t *testing.T) { |
| 245 | // Test with relative path |
| 246 | output, err := runCodemap("./scanner") |
| 247 | if err != nil { |
| 248 | t.Fatalf("Relative path failed: %v", err) |
| 249 | } |
| 250 | |
| 251 | if output == "" { |
| 252 | t.Error("Should produce output for relative path") |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | func TestCurrentDirectory(t *testing.T) { |
| 257 | // Test default (current directory) |
nothing calls this directly
no test coverage detected