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

Side by Side Diff: content/shell/android/javatests/src/org/chromium/content_shell_apk/ContentShellPreconditionsTest.java

Issue 2632043002: Create ContentShellActivityTestRule and BaseJUnitRunner (Closed)
Patch Set: Change javadoc Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.content_shell_apk; 5 package org.chromium.content_shell_apk;
6 6
7 import android.annotation.TargetApi; 7 import android.annotation.TargetApi;
8 import android.content.Context; 8 import android.content.Context;
9 import android.os.Build; 9 import android.os.Build;
10 import android.os.PowerManager; 10 import android.os.PowerManager;
11 import android.support.test.InstrumentationRegistry;
11 import android.support.test.filters.MediumTest; 12 import android.support.test.filters.MediumTest;
12 13
14 import org.junit.Assert;
15 import org.junit.Test;
16 import org.junit.runner.RunWith;
17
18 import org.chromium.base.test.BaseJUnit4ClassRunner;
13 import org.chromium.base.test.util.Feature; 19 import org.chromium.base.test.util.Feature;
14 20
15 /** 21 /**
16 * Test that verifies preconditions for tests to run. 22 * Test that verifies preconditions for tests to run.
17 */ 23 */
18 public class ContentShellPreconditionsTest extends ContentShellTestBase { 24 @RunWith(BaseJUnit4ClassRunner.class)
25 public class ContentShellPreconditionsTest {
26 @Test
19 @TargetApi(Build.VERSION_CODES.KITKAT_WATCH) 27 @TargetApi(Build.VERSION_CODES.KITKAT_WATCH)
20 @SuppressWarnings("deprecation") 28 @SuppressWarnings("deprecation")
21 @MediumTest 29 @MediumTest
22 @Feature({"TestInfrastructure"}) 30 @Feature({"TestInfrastructure"})
23 public void testScreenIsOn() throws Exception { 31 public void testScreenIsOn() throws Exception {
24 PowerManager pm = (PowerManager) getInstrumentation().getContext().getSy stemService( 32 PowerManager pm = (PowerManager) InstrumentationRegistry.getContext().ge tSystemService(
25 Context.POWER_SERVICE); 33 Context.POWER_SERVICE);
26 34
27 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT_WATCH) { 35 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT_WATCH) {
28 assertTrue("Many tests will fail if the screen is not on.", pm.isInt eractive()); 36 Assert.assertTrue("Many tests will fail if the screen is not on.", p m.isInteractive());
29 } else { 37 } else {
30 assertTrue("Many tests will fail if the screen is not on.", pm.isScr eenOn()); 38 Assert.assertTrue("Many tests will fail if the screen is not on.", p m.isScreenOn());
31 } 39 }
32 } 40 }
33 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698