()
| 1691 | |
| 1692 | #[tokio::test] |
| 1693 | async fn test_parse_defines_empty_file() { |
| 1694 | let backend = create_test_backend(); |
| 1695 | let defines = backend.parse_defines("<?php\n"); |
| 1696 | assert!(defines.is_empty()); |
| 1697 | } |
| 1698 | |
| 1699 | #[tokio::test] |
| 1700 | async fn test_parse_defines_no_defines() { |
nothing calls this directly
no test coverage detected