()
| 16 | def test_tool_plugin(self): |
| 17 | |
| 18 | async def main(): |
| 19 | config = Config.from_task('ms-agent/simple_tool_plugin') |
| 20 | tool_manager = ToolManager(config, trust_remote_code=True) |
| 21 | self.assertTrue(len(tool_manager.extra_tools) == 1) |
| 22 | await tool_manager.connect() |
| 23 | await tool_manager.cleanup() |
| 24 | |
| 25 | asyncio.run(main()) |
| 26 |
no test coverage detected