()
| 2433 | |
| 2434 | #[test] |
| 2435 | fn symbols_top_level_const() { |
| 2436 | let content = b"<?php\nconst FOO = 'bar';"; |
| 2437 | let result = find_symbols(content); |
| 2438 | assert_eq!(result.constants, vec!["FOO"]); |
| 2439 | } |
| 2440 | |
| 2441 | #[test] |
| 2442 | fn symbols_namespaced_const() { |
nothing calls this directly
no test coverage detected