Index: chrome/android/javatests/src/org/chromium/chrome/browser/partnercustomizations/BasePartnerBrowserCustomizationIntegrationTest.java |
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/partnercustomizations/BasePartnerBrowserCustomizationIntegrationTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/partnercustomizations/BasePartnerBrowserCustomizationIntegrationTest.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2891c2bb95c34a6b5a04ffabe8a927c1bc4c192a |
--- /dev/null |
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/partnercustomizations/BasePartnerBrowserCustomizationIntegrationTest.java |
@@ -0,0 +1,28 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.chrome.browser.partnercustomizations; |
+ |
+import org.chromium.chrome.browser.ChromeActivity; |
+import org.chromium.chrome.test.ChromeActivityTestCaseBase; |
+ |
+/** |
+ * Basic shared functionality for partner customization integration tests. |
+ */ |
+public abstract class BasePartnerBrowserCustomizationIntegrationTest extends |
+ ChromeActivityTestCaseBase<ChromeActivity> { |
+ |
+ public BasePartnerBrowserCustomizationIntegrationTest() { |
+ super(ChromeActivity.class); |
+ } |
+ |
+ @Override |
+ protected void setUp() throws Exception { |
+ PartnerBrowserCustomizations.ignoreBrowserProviderSystemPackageCheckForTests(true); |
+ PartnerBrowserCustomizations.setProviderAuthorityForTests( |
+ "org.chromium.chrome.test.partnercustomizations"); |
+ |
+ super.setUp(); |
+ } |
+} |