File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
examples/androidjunit/src/org/appspot/apprtc Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3333import java .util .ArrayList ;
3434import java .util .List ;
3535import org .appspot .apprtc .AppRTCBluetoothManager .State ;
36- import org .chromium .testing .local .LocalRobolectricTestRunner ;
3736import org .junit .Before ;
3837import org .junit .Test ;
3938import org .junit .runner .RunWith ;
4039import org .robolectric .annotation .Config ;
4140import org .robolectric .shadows .ShadowLog ;
41+ import org .robolectric .RobolectricTestRunner ;
4242
4343/**
4444 * Verifies basic behavior of the AppRTCBluetoothManager class.
4545 * Note that the test object uses an AppRTCAudioManager (injected in ctor),
4646 * but a mocked version is used instead. Hence, the parts "driven" by the AppRTC
4747 * audio manager are not included in this test.
4848 */
49- @ RunWith (LocalRobolectricTestRunner .class )
49+ @ RunWith (RobolectricTestRunner .class )
5050@ Config (manifest = Config .NONE )
5151public class BluetoothManagerTest {
5252 private static final String TAG = "BluetoothManagerTest" ;
Original file line number Diff line number Diff line change 2020import static org .mockito .Mockito .verify ;
2121import static org .mockito .Mockito .verifyNoMoreInteractions ;
2222
23- import org .chromium .testing .local .LocalRobolectricTestRunner ;
2423import org .junit .Before ;
2524import org .junit .Test ;
2625import org .junit .runner .RunWith ;
2726import org .robolectric .annotation .Config ;
2827import org .robolectric .shadows .ShadowLog ;
28+ import org .robolectric .RobolectricTestRunner ;
2929import org .webrtc .IceCandidate ;
3030import org .webrtc .SessionDescription ;
3131
3232/**
3333 * Test for DirectRTCClient. Test is very simple and only tests the overall sanity of the class
3434 * behaviour.
3535 */
36- @ RunWith (LocalRobolectricTestRunner .class )
36+ @ RunWith (RobolectricTestRunner .class )
3737@ Config (manifest = Config .NONE )
3838public class DirectRTCClientTest {
3939 private static final String ROOM_URL = "" ;
Original file line number Diff line number Diff line change 1515import static org .mockito .Mockito .verify ;
1616import static org .mockito .Mockito .verifyNoMoreInteractions ;
1717
18- import org .chromium .testing .local .LocalRobolectricTestRunner ;
1918import org .junit .After ;
2019import org .junit .Before ;
2120import org .junit .Test ;
2423import org .mockito .MockitoAnnotations ;
2524import org .robolectric .annotation .Config ;
2625import org .robolectric .shadows .ShadowLog ;
26+ import org .robolectric .RobolectricTestRunner ;
2727
2828import java .util .concurrent .ExecutorService ;
2929import java .util .concurrent .Executors ;
3030import java .util .concurrent .TimeUnit ;
3131
32- @ RunWith (LocalRobolectricTestRunner .class )
32+ @ RunWith (RobolectricTestRunner .class )
3333@ Config (manifest = Config .NONE )
3434public class TCPChannelClientTest {
3535 private static final int PORT = 8888 ;
You can’t perform that action at this time.
0 commit comments