(doc_file: str, block_index: int)
| 182 | |
| 183 | |
| 184 | def generate_test_file_name(doc_file: str, block_index: int) -> str: |
| 185 | # Generate a test file name from documentation file and block index. |
| 186 | |
| 187 | base_name = Path(doc_file).stem |
| 188 | return f"doc_test_{base_name}_{block_index}.cc" |
| 189 | |
| 190 | |
| 191 | def process_markdown_file(md_path: Path, output_dir: Path) -> List[Path]: |
no outgoing calls
no test coverage detected