File tree 4 files changed +21
-14
lines changed
app/src/androidTest/kotlin/com/antyzero/cardcheck
4 files changed +21
-14
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,14 @@ target/
19
19
build /
20
20
local.properties
21
21
22
+ # Script
23
+ /* .sh
24
+
22
25
# Binaries
23
26
bin /
24
27
gen /
25
28
26
29
# Crashlytics
27
30
crashlytics.properties
28
31
crashlytics-build.properties
29
- app /src /main /res /values /com_crashlytics_export_strings.xml
32
+ app /src /main /res /values /com_crashlytics_export_strings.xml
Original file line number Diff line number Diff line change 26
26
- TAG=google_apis # Google APIs by default, alternatively use default
27
27
- ABI=x86
28
28
- LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ANDROID_HOME/tools/lib
29
+ - PATH=$ANDROID_HOME/emulator;$PATH
29
30
30
31
android :
31
32
components :
@@ -37,6 +38,7 @@ android:
37
38
before_install :
38
39
- export EMULATOR="system-images;android-$API;$TAG;$ABI" # Used to install/create emulator
39
40
- echo 'count=0' > /home/travis/.android/repositories.cfg # Avoid warning
41
+ - echo $ANDROID_HOME
40
42
41
43
install :
42
44
# List and delete unnecessary components to free space
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ package com.antyzero.cardcheck
2
+
3
+ import android.app.Application
4
+ import android.test.ApplicationTestCase
5
+ import org.assertj.core.api.Java6Assertions.assertThat
6
+ import org.junit.Test
7
+
8
+
9
+ class ApplicationTest : ApplicationTestCase <Application >(Application : :class.java) {
10
+
11
+ @Test
12
+ fun testDumb () {
13
+ assertThat(true ).isTrue()
14
+ }
15
+ }
You can’t perform that action at this time.
0 commit comments