(t *testing.T)
| 224 | } |
| 225 | |
| 226 | func TestExtractMetadataInternal_InvalidSQL(t *testing.T) { |
| 227 | _, err := extractMetadataInternal(")))((( @@@ !!!") |
| 228 | if err == nil { |
| 229 | t.Fatal("expected parse error for invalid SQL") |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | // --- securityScanInternal --- |
| 234 |
nothing calls this directly
no test coverage detected