(ThreadSafeRandom random, AtomicLong activeFaultCounter)
| 82 | private final AtomicLong activeFaultCounter; |
| 83 | |
| 84 | @VisibleForTesting |
| 85 | FaultFilter(ThreadSafeRandom random, AtomicLong activeFaultCounter) { |
| 86 | this.random = random; |
| 87 | this.activeFaultCounter = activeFaultCounter; |
| 88 | } |
| 89 | |
| 90 | static final class Provider implements Filter.Provider { |
| 91 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected