(name: str)
| 89 | |
| 90 | def test_no_new_methods_was_added_to_api(): |
| 91 | def is_public(name: str) -> bool: |
| 92 | return not name.startswith("_") |
| 93 | |
| 94 | dict_public_names = {name for name in dir({}) if is_public(name)} |
| 95 | hash_public_names = {name for name in dir(HashMap()) if is_public(name)} |
no outgoing calls
no test coverage detected