(self)
| 9 | |
| 10 | class Test_CsharpParser(unittest.TestCase): |
| 11 | def setUp(self) -> None: |
| 12 | with open('tests/test_parser/test_sample/c_sharp_test_sample.cs', 'r') as file: |
| 13 | self.code_sample = file.read() |
| 14 | |
| 15 | tree = parse_code(self.code_sample, 'c#') |
| 16 | self.root_node = tree.root_node |
| 17 | |
| 18 | return super().setUp() |
| 19 | |
| 20 | def test_get_function_list(self): |
| 21 | root = self.root_node |
nothing calls this directly
no test coverage detected