summaryrefslogtreecommitdiff
path: root/app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java
blob: c4dd032d733e5763b92f13508e771190f730f471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package de.test.antennapod.ui;

import android.content.Intent;
import android.support.test.filters.MediumTest;
import android.support.test.rule.ActivityTestRule;

import de.danoeh.antennapod.R;
import de.danoeh.antennapod.activity.VideoplayerActivity;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;

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;

/**
 * Test class for VideoplayerActivity
 */
@MediumTest
@Ignore
public class VideoplayerActivityTest {

    @Rule
    public ActivityTestRule<VideoplayerActivity> activityTestRule = new ActivityTestRule<>(VideoplayerActivity.class, false, false);

    /**
     * Test if activity can be started.
     */
    @Test
    public void testStartActivity() throws Exception {
        activityTestRule.launchActivity(new Intent());
        onView(withId(R.id.videoframe)).check(matches(isDisplayed()));
    }
}