(self)
| 224 | |
| 225 | @unittest.skipIf(skip_llm_tests, skip_message) |
| 226 | def test_create_invalid_provider(self): |
| 227 | with self.assertRaises(ValueError): |
| 228 | create_llm_client("invalid_provider") |
| 229 | |
| 230 | @unittest.skipIf(skip_llm_tests, skip_message) |
| 231 | @patch('tools.llm_api.create_llm_client') |
nothing calls this directly
no test coverage detected