(self, name="my_func", path="/test/file.py", parent=None, is_test=False)
| 25 | ) |
| 26 | |
| 27 | def _make_func_node(self, name="my_func", path="/test/file.py", parent=None, is_test=False): |
| 28 | return NodeInfo( |
| 29 | kind="Test" if is_test else "Function", |
| 30 | name=name, file_path=path, |
| 31 | line_start=10, line_end=20, language="python", |
| 32 | parent_name=parent, is_test=is_test, |
| 33 | ) |
| 34 | |
| 35 | def _make_class_node(self, name="MyClass", path="/test/file.py"): |
| 36 | return NodeInfo( |
no test coverage detected