fest -> assertJ
This commit is contained in:
parent
7c28ac759c
commit
b11ad795ca
6 changed files with 15 additions and 6 deletions
11
build.gradle
11
build.gradle
|
@ -49,6 +49,14 @@ android {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// needed for assertJ
|
||||
packagingOptions {
|
||||
exclude 'asm-license.txt'
|
||||
exclude 'LICENSE'
|
||||
exclude 'NOTICE'
|
||||
}
|
||||
|
||||
// https://groups.google.com/forum/#!topic/adt-dev/-Km7VgExKf4
|
||||
useOldManifestMerger true
|
||||
}
|
||||
|
@ -65,7 +73,8 @@ dependencies {
|
|||
}
|
||||
|
||||
androidTestCompile 'com.squareup.spoon:spoon-client:1.1.1'
|
||||
androidTestCompile 'com.squareup:fest-android:1.0.8'
|
||||
|
||||
androidTestCompile 'com.squareup.assertj:assertj-android:1.0.0'
|
||||
|
||||
androidTestCompile 'org.mockito:mockito-core:1.9.5'
|
||||
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.0'
|
||||
|
|
|
@ -9,7 +9,7 @@ import com.google.zxing.common.BitMatrix;
|
|||
|
||||
import org.ligi.passandroid.helper.BarcodeHelper;
|
||||
|
||||
import static org.fest.assertions.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
public class TheBarcodeHelper extends BaseTest {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import org.ligi.passandroid.model.Pass;
|
|||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import static org.fest.assertions.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
public class TheCategoryHelper extends BaseTest {
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ import static com.google.android.apps.common.testing.ui.espresso.Espresso.onView
|
|||
import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
|
||||
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isDisplayed;
|
||||
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withId;
|
||||
import static org.fest.assertions.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
public class TheFullscreenBarcodeActivity extends BaseIntegration<FullscreenBarcodeActivity> {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import android.test.suitebuilder.annotation.SmallTest;
|
|||
|
||||
import org.ligi.passandroid.model.PastLocationsStore;
|
||||
|
||||
import static org.fest.assertions.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
public class ThePastLocationsStore extends BaseIntegration<Activity> {
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import android.test.suitebuilder.annotation.SmallTest;
|
|||
|
||||
import org.ligi.passandroid.model.Pass;
|
||||
|
||||
import static org.fest.assertions.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
public class TheQuirkCorrector extends TheAppleStyleBarcodeReaderBase {
|
||||
|
||||
|
|
Loading…
Reference in a new issue