()
| 2419 | |
| 2420 | #[test] |
| 2421 | fn symbols_define_single_quote() { |
| 2422 | let content = b"<?php\ndefine('MY_CONST', 42);"; |
| 2423 | let result = find_symbols(content); |
| 2424 | assert_eq!(result.constants, vec!["MY_CONST"]); |
| 2425 | } |
| 2426 | |
| 2427 | #[test] |
| 2428 | fn symbols_define_double_quote() { |
nothing calls this directly
no test coverage detected