()
| 1698 | |
| 1699 | #[tokio::test] |
| 1700 | async fn test_parse_defines_no_defines() { |
| 1701 | let backend = create_test_backend(); |
| 1702 | let defines = backend.parse_defines("<?php\necho 'hello';\nfunction foo() {}\n"); |
| 1703 | assert!(defines.is_empty()); |
| 1704 | } |
| 1705 | |
| 1706 | #[tokio::test] |
| 1707 | async fn test_parse_defines_inside_if_guard() { |
nothing calls this directly
no test coverage detected