Run all session note tool tests.
()
| 114 | |
| 115 | |
| 116 | async def main(): |
| 117 | """Run all session note tool tests.""" |
| 118 | print("=" * 80) |
| 119 | print("Running Session Note Tool Tests") |
| 120 | print("=" * 80) |
| 121 | |
| 122 | await test_record_and_recall_notes() |
| 123 | await test_empty_notes() |
| 124 | await test_note_persistence() |
| 125 | |
| 126 | print("\n" + "=" * 80) |
| 127 | print("All Session Note Tool tests passed! ✅") |
| 128 | print("=" * 80) |
| 129 | |
| 130 | |
| 131 | if __name__ == "__main__": |
no test coverage detected