// Copyright 2015 The Chromium Authors
// 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.hardware_acceleration;
import androidx.test.filters.SmallTest;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.chromium.base.test.util.CommandLineFlags;
import org.chromium.chrome.browser.flags.ChromeSwitches;
import org.chromium.chrome.browser.webapps.WebappActivity;
import org.chromium.chrome.browser.webapps.WebappActivityTestRule;
import org.chromium.chrome.test.ChromeJUnit4ClassRunner;
/** Tests that WebappActivity is hardware accelerated only high-end devices. */
@RunWith(ChromeJUnit4ClassRunner.class)
@CommandLineFlags.Add({ChromeSwitches.DISABLE_FIRST_RUN_EXPERIENCE})
public class WebappActivityHWATest {
@Rule public final WebappActivityTestRule mActivityTestRule = new WebappActivityTestRule();
@Before
public void setUp() {
mActivityTestRule.startWebappActivity();
}
@Test
@SmallTest
public void testHardwareAcceleration() throws Exception {
WebappActivity activity = mActivityTestRule.getActivity();
Utils.assertHardwareAcceleration(activity);
}
}