()
| 81 | |
| 82 | @pytest.mark.asyncio |
| 83 | async def testCppTestRepo(): |
| 84 | repoPath = prepareRepo("cpp_test_repo") |
| 85 | graphServer = createCclsGraphServer() |
| 86 | analyzer = Analyzer(repoPath, graphServer) |
| 87 | async with graphServer: |
| 88 | analyzer.observer = GraphDumpAnalyzerObserver( |
| 89 | os.path.join(testDataRoot, "baseline/cpp_test_repo"), |
| 90 | os.path.join(testDataRoot, "actualdump/cpp_test_repo")) |
| 91 | await analyzer.analyze() |
nothing calls this directly
no test coverage detected