supportedDevice static method
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;
}