Set up test fixtures before each test method.
(self)
| 25 | cls.mock_client_session.get.return_value.__aenter__.return_value = cls.mock_response |
| 26 | |
| 27 | def setUp(self): |
| 28 | """Set up test fixtures before each test method.""" |
| 29 | self.urls = ["http://example1.com", "http://example2.com"] |
| 30 | self.mock_session = self.mock_client_session |
| 31 | |
| 32 | def test_validate_url(self): |
| 33 | # Test valid URLs |
nothing calls this directly
no outgoing calls
no test coverage detected