unsupportedDevice static method

FakeNfcWalletSuppression unsupportedDevice()

Scenario: Device does not support NFC

Implementation

static FakeNfcWalletSuppression unsupportedDevice() {
  final fake = FakeNfcWalletSuppression();
  fake.setSupported(false);
  fake.setRequestResult(SuppressionStatus.notSupported);
  fake.setReleaseResult(SuppressionStatus.notSupported);
  return fake;
}