()
| 2440 | |
| 2441 | #[test] |
| 2442 | fn symbols_namespaced_const() { |
| 2443 | let content = b"<?php\nnamespace App;\nconst VERSION = '1.0';"; |
| 2444 | let result = find_symbols(content); |
| 2445 | assert_eq!(result.constants, vec!["App\\VERSION"]); |
| 2446 | } |
| 2447 | |
| 2448 | #[test] |
| 2449 | fn symbols_class_const_not_captured() { |
nothing calls this directly
no test coverage detected