Use a standard Androidx test runner instead of the org.chromium one

Bug: webrtc:13662
Change-Id: I7ae28a61ea8f7e578d8aef8e3104f8564f3dd7b6
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/256621
Auto-Submit: Xavier Lepaul‎ <xalep@webrtc.org>
Reviewed-by: Linus Nilsson <lnilsson@webrtc.org>
Commit-Queue: Xavier Lepaul‎ <xalep@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#36318}
This commit is contained in:
Xavier Lepaul
2022-03-24 11:14:51 +01:00
committed by WebRTC LUCI CQ
parent dacd31f5e8
commit a6fcbb1830
11 changed files with 21 additions and 21 deletions

View File

@ -12,13 +12,13 @@ package org.webrtc;
import static com.google.common.truth.Truth.assertThat;
import org.chromium.testing.local.LocalRobolectricTestRunner;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.annotation.Config;
import org.webrtc.IceCandidate;
@RunWith(LocalRobolectricTestRunner.class)
@RunWith(AndroidJUnit4.class)
@Config(manifest = Config.NONE)
public class IceCandidateTest {
@Test