/* * Copyright (C) 2016 Glucosio Foundation * * This file is part of Glucosio. * * Glucosio is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * Glucosio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Glucosio. If not, see <http://www.gnu.org/licenses/>. * * */ package org.glucosio.android; import android.support.test.rule.ActivityTestRule; import android.support.test.runner.AndroidJUnit4; import org.glucosio.android.activity.MainActivity; import org.junit.FixMethodOrder; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.MethodSorters; 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; /** * @author piotr on 29/10/15. */ @RunWith(AndroidJUnit4.class) @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class MainActivityTest { @Rule public ActivityTestRule<MainActivity> mRule = new ActivityTestRule<>(MainActivity.class); private HelloActivityTest previousTest = new HelloActivityTest(); private void goThroughHelloActivity() throws InterruptedException { previousTest.check_004_IfICanEnterMyAgeUsingHelloAgeEditText(); previousTest.check_009_IfICanSubmitAnyData(); } @Test public void check_001_checkIfToolbarIsDisplayed() throws InterruptedException { goThroughHelloActivity(); onView(withId(R.id.activity_main_toolbar)).check(matches(isDisplayed())); } // TODO: 09/09/16 Test the responses in UI -> Show ui notice when export started, is empty or error }