removeTestingOverride static method
- @visibleForTesting
Unsets the overrideForTesting instance, defaulting to normal behavior.
A typical use-case for this might be tearDown
:
tearDown(CompileContext.removeTestingOverride);
Implementation
@visibleForTesting
static void removeTestingOverride() {
_overrideForTesting = null;
}