<% const activity = locals[0]; const subPackage = locals[1]; -%> // This file is generated. Edit android/platform/scripts/generate-test-code.js, then run `make generate-test-android`. package com.mapbox.mapboxsdk.testapp.activity.gen.<%- subPackage %>; import android.support.test.runner.AndroidJUnit4; import com.mapbox.mapboxsdk.testapp.activity.BaseActivityTest; import com.mapbox.mapboxsdk.testapp.R; import com.mapbox.mapboxsdk.testapp.activity.<%- subPackage %>.<%- activity %>; import org.junit.Test; import org.junit.runner.RunWith; import static android.support.test.espresso.Espresso.onView; import static android.support.test.espresso.assertion.ViewAssertions.matches; import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed; import static android.support.test.espresso.matcher.ViewMatchers.withId; /** * Sanity test for <%- activity %> */ @RunWith(AndroidJUnit4.class) public class <%- activity %>Test extends BaseActivityTest { @Test public void testSanity() { onView(withId(R.id.mapView)).check(matches(isDisplayed())); } @Override protected Class getActivityClass() { return <%- activity %>.class; } }