Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1539)

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java

Issue 2258693002: Add Feature tag to all Payments tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
index e15af203a7fac2ed4fc26138b34d8bbe6025f6fe..52f181cef4c524df7cad099ad434ca42015238f1 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
@@ -7,6 +7,7 @@ package org.chromium.chrome.browser.payments;
import android.content.DialogInterface;
import android.test.suitebuilder.annotation.MediumTest;
+import org.chromium.base.test.util.Feature;
import org.chromium.chrome.R;
import org.chromium.chrome.browser.autofill.AutofillTestHelper;
import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile;
@@ -45,6 +46,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
* responds quickly.
*/
@MediumTest
+ @Feature({"Payments"})
public void testNoInstrumentsInFastBobPay() throws InterruptedException, ExecutionException,
TimeoutException {
runTest(NO_INSTRUMENTS, IMMEDIATE_RESPONSE);
@@ -55,6 +57,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
* responds slowly.
*/
@MediumTest
+ @Feature({"Payments"})
public void testNoInstrumentsInSlowBobPay() throws InterruptedException, ExecutionException,
TimeoutException {
runTest(NO_INSTRUMENTS, DELAYED_RESPONSE);
@@ -65,6 +68,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
* quickly.
*/
@MediumTest
+ @Feature({"Payments"})
public void testHaveInstrumentsInFastBobPay() throws InterruptedException, ExecutionException,
TimeoutException {
runTest(HAVE_INSTRUMENTS, IMMEDIATE_RESPONSE);
@@ -75,6 +79,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
* slowly.
*/
@MediumTest
+ @Feature({"Payments"})
public void testHaveInstrumentsInSlowBobPay() throws InterruptedException, ExecutionException,
TimeoutException {
runTest(HAVE_INSTRUMENTS, DELAYED_RESPONSE);

Powered by Google App Engine
This is Rietveld 408576698