()
| 2426 | |
| 2427 | #[test] |
| 2428 | fn symbols_define_double_quote() { |
| 2429 | let content = b"<?php\ndefine(\"APP_VERSION\", '1.0');"; |
| 2430 | let result = find_symbols(content); |
| 2431 | assert_eq!(result.constants, vec!["APP_VERSION"]); |
| 2432 | } |
| 2433 | |
| 2434 | #[test] |
| 2435 | fn symbols_top_level_const() { |
nothing calls this directly
no test coverage detected