supportedDevice static method

FakeNfcWalletSuppression supportedDevice()

Scenario: Device supports NFC and suppression works normally

Implementation

static FakeNfcWalletSuppression supportedDevice() {
  final fake = FakeNfcWalletSuppression();
  fake.setSupported(true);
  fake.setRequestResult(SuppressionStatus.suppressed);
  fake.setReleaseResult(SuppressionStatus.notSuppressed);
  return fake;
}