Return a globally unique type key for low-level field tests.
(base: str)
| 60 | |
| 61 | |
| 62 | def _unique_key_ff(base: str) -> str: |
| 63 | """Return a globally unique type key for low-level field tests.""" |
| 64 | return f"testing.py_class.{base}_{next(_counter_ff)}" |
| 65 | |
| 66 | |
| 67 | def _make_type( |
no outgoing calls
no test coverage detected