blob: abc486703ee01b913320414306fef968f831fbd0 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.support.test.uiautomator.tests;
import android.support.test.InstrumentationRegistry;
import android.support.test.filters.SdkSuppress;
import android.support.test.runner.AndroidJUnit4;
import android.support.test.uiautomator.By;
import android.support.test.uiautomator.UiDevice;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(AndroidJUnit4.class)
public class MultiWindowTests {
private UiDevice mDevice;
private static final String TEST_APP = "android.support.test.uiautomator.testapp";
@Before
public void setUp() {
mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
mDevice.pressHome();
mDevice.waitForIdle();
}
@Test
@SdkSuppress(minSdkVersion=21)
public void testHasBackButton() {
Assert.assertTrue(mDevice.hasObject(By.res("com.android.systemui", "back")));
}
@Test
@SdkSuppress(minSdkVersion=21)
public void testHasHomeButton() {
Assert.assertTrue(mDevice.hasObject(By.res("com.android.systemui", "home")));
}
@Test
@SdkSuppress(minSdkVersion=21)
public void testHasRecentsButton() {
Assert.assertTrue(mDevice.hasObject(By.res("com.android.systemui", "recent_apps")));
}
@Test
@SdkSuppress(minSdkVersion=21)
public void testHasStatusBar() {
Assert.assertTrue(mDevice.hasObject(By.res("com.android.systemui", "status_bar")));
}
}