()
| 9 | from google.cloud import translate_v3 as translate, translate_v2 |
| 10 | |
| 11 | def _make_credentials(): |
| 12 | import google.auth.credentials |
| 13 | return Mock(spec=google.auth.credentials.Credentials) |
| 14 | |
| 15 | class TestCloudTranslation(unittest.TestCase): |
| 16 | class FakeClient: |
no outgoing calls
no test coverage detected