()
| 2392 | |
| 2393 | #[test] |
| 2394 | fn use_const_not_captured() { |
| 2395 | let content = b"<?php\nnamespace App\\Config;\nuse const PHP_EOL;\n"; |
| 2396 | let result = find_symbols(content); |
| 2397 | assert!( |
| 2398 | result.constants.is_empty(), |
| 2399 | "use const statements should not appear as constants: {:?}", |
| 2400 | result.constants |
| 2401 | ); |
| 2402 | } |
| 2403 | |
| 2404 | #[test] |
| 2405 | fn symbols_method_not_captured() { |
nothing calls this directly
no test coverage detected