File tree 2 files changed +9
-4
lines changed
bugsnag-android-core/src/androidTest/java/com/bugsnag/android
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
android :
11
- runs-on : macos -latest
11
+ runs-on : ubuntu -latest
12
12
13
13
strategy :
14
14
fail-fast : true
15
15
matrix :
16
16
api-level :
17
- - 29
17
+ - 33
18
18
19
19
steps :
20
20
- uses : actions/checkout@v3
25
25
- uses : actions/setup-java@v3
26
26
with :
27
27
distribution : ' zulu'
28
- java-version : 11
28
+ java-version : 17
29
29
30
30
- name : Gradle cache
31
31
uses : gradle/gradle-build-action@v2
@@ -34,15 +34,17 @@ jobs:
34
34
if : steps.avd-cache.outputs.cache-hit != 'true'
35
35
uses : reactivecircus/android-emulator-runner@v2
36
36
with :
37
+ arch : x86_64
37
38
api-level : ${{ matrix.api-level }}
38
39
force-avd-creation : false
39
- emulator-options : -no-window -gpu swiftshader_indirect - noaudio -no-boot-anim -camera-back none
40
+ emulator-options : -no-window -noaudio -no-boot-anim -camera-back none -feature -Vulkan
40
41
disable-animations : false
41
42
script : echo "Generated AVD snapshot for caching."
42
43
43
44
- name : Run Tests
44
45
uses : reactivecircus/android-emulator-runner@v2
45
46
with :
47
+ arch : x86_64
46
48
api-level : ${{ matrix.api-level }}
47
49
script : ./gradlew connectedCheck -x :bugsnag-benchmarks:connectedCheck
48
50
env :
Original file line number Diff line number Diff line change 2
2
3
3
import static org .junit .Assert .assertEquals ;
4
4
import static org .junit .Assert .assertTrue ;
5
+ import static org .mockito .ArgumentMatchers .any ;
6
+ import static org .mockito .Mockito .doNothing ;
5
7
import static org .mockito .Mockito .times ;
6
8
import static org .mockito .Mockito .verify ;
7
9
import static org .mockito .Mockito .when ;
@@ -34,6 +36,7 @@ public class MemoryTrimTest {
34
36
@ Test
35
37
public void onLowMemoryEvent () {
36
38
when (context .getApplicationContext ()).thenReturn (context );
39
+ doNothing ().when (context ).registerComponentCallbacks (any ());
37
40
Client client = new Client (context , BugsnagTestUtils .generateConfiguration ());
38
41
39
42
// block until observer is registered
You can’t perform that action at this time.
0 commit comments