package com.mapbox.mapboxsdk.integration import android.support.test.filters.LargeTest import android.support.test.runner.AndroidJUnit4 import org.junit.Before import org.junit.Test import org.junit.runner.RunWith /** * Regression test that validates reopening an Activity with a GLSurfaceView */ @RunWith(AndroidJUnit4::class) class GLSurfaceViewReopenTest : BaseIntegrationTest() { @Before override fun beforeTest() { super.beforeTest() openFeature("Simple Map") } @Test @LargeTest fun reopenSimpleMapActivity() { pressHomeReturnWithRecentApps() device.waitForIdle() } }