Run all tool tests.
()
| 92 | |
| 93 | |
| 94 | async def main(): |
| 95 | """Run all tool tests.""" |
| 96 | print("=" * 80) |
| 97 | print("Running Tool Tests") |
| 98 | print("=" * 80) |
| 99 | |
| 100 | await test_read_tool() |
| 101 | await test_write_tool() |
| 102 | await test_edit_tool() |
| 103 | await test_bash_tool() |
| 104 | |
| 105 | print("\n" + "=" * 80) |
| 106 | print("All tool tests passed! ✅") |
| 107 | print("=" * 80) |
| 108 | |
| 109 | |
| 110 | if __name__ == "__main__": |
no test coverage detected