31 lines
1.2 KiB
Java
31 lines
1.2 KiB
Java
package com.a1.nextlocation;
|
|
|
|
import androidx.test.espresso.contrib.RecyclerViewActions;
|
|
import androidx.test.rule.ActivityTestRule;
|
|
|
|
import com.a1.nextlocation.fragments.LocationFragment;
|
|
import com.a1.nextlocation.fragments.RouteFragment;
|
|
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
|
|
import static androidx.test.espresso.Espresso.onView;
|
|
import static androidx.test.espresso.action.ViewActions.click;
|
|
import static androidx.test.espresso.assertion.ViewAssertions.matches;
|
|
import static androidx.test.espresso.matcher.ViewMatchers.isDisplayed;
|
|
import static androidx.test.espresso.matcher.ViewMatchers.withId;
|
|
|
|
public class RouteFragmentTest {
|
|
@Rule
|
|
public ActivityTestRule<MainActivity> mActivityTestRule = new ActivityTestRule<>(MainActivity.class);
|
|
|
|
@Test
|
|
public void clickBackButton() throws Exception{
|
|
//Here we click the back button and then we check if the homeFragment is shown
|
|
mActivityTestRule.getActivity().getSupportFragmentManager().beginTransaction().replace(R.id.mainActivity, new RouteFragment()).commit();
|
|
onView(withId(R.id.route_back_button)).perform(click());
|
|
onView(withId(R.id.homeFragment)).check(matches(isDisplayed()));
|
|
|
|
}
|
|
}
|