Skip to content

Commit

Permalink
Remove TestWith anotation
Browse files Browse the repository at this point in the history
  • Loading branch information
zyuiop committed Nov 16, 2018
1 parent 028bb1e commit 29a7cd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
@@ -1,6 +1,8 @@
language: android
env:
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=16 VIEW_AVD_LOGS=1
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=18 VIEW_AVD_LOGS=1
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=19 VIEW_AVD_LOGS=1
- ABI_IMAGE=armeabi-v7a-android ABI=armeabi-v7a API=24 VIEW_AVD_LOGS=1

#- ABI_IMAGE=armeabi-v7a-google_apis ABI=google_apis/armeabi API=16
Expand Down Expand Up @@ -39,7 +41,7 @@ before_script:
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- if [ -n "$VIEW_AVD_LOGS" ] ; then adb logcat *:V & LOGCAT_PID=$!; fi
- if [ -n "$VIEW_AVD_LOGS" ] ; then adb logcat *:I & LOGCAT_PID=$!; fi
- ./gradlew build connectedCheck jacocoTestReport
- if [ -n "$LOGCAT_PID" ] ; then kill $LOGCAT_PID; fi
after_script:
Expand Down
Expand Up @@ -6,10 +6,7 @@
import ch.epfl.sweng.eventmanager.R;
import ch.epfl.sweng.eventmanager.test.EventTestRule;
import ch.epfl.sweng.eventmanager.ui.eventShowcase.EventShowcaseActivity;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.*;
import org.junit.runner.RunWith;

import static android.os.SystemClock.sleep;
Expand All @@ -18,7 +15,6 @@
import static androidx.test.espresso.matcher.ViewMatchers.withId;
import static androidx.test.espresso.matcher.ViewMatchers.withText;

@RunWith(AndroidJUnit4.class)
public class EventMapFragmentTest {

@Rule
Expand Down

0 comments on commit 29a7cd5

Please sign in to comment.