mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-09-02 07:05:09 +00:00
Add DeviceType test
This commit is contained in:
@@ -114,6 +114,16 @@ public class DeviceTest {
|
|||||||
Mockito.when(context.getSystemService(eq(Context.NOTIFICATION_SERVICE))).thenReturn(Mockito.mock(NotificationManager.class));
|
Mockito.when(context.getSystemService(eq(Context.NOTIFICATION_SERVICE))).thenReturn(Mockito.mock(NotificationManager.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testDeviceType() {
|
||||||
|
assertEquals(Device.DeviceType.Phone, Device.DeviceType.FromString(Device.DeviceType.Phone.toString()));
|
||||||
|
assertEquals(Device.DeviceType.Tablet, Device.DeviceType.FromString(Device.DeviceType.Tablet.toString()));
|
||||||
|
assertEquals(Device.DeviceType.Computer, Device.DeviceType.FromString(Device.DeviceType.Computer.toString()));
|
||||||
|
assertEquals(Device.DeviceType.Tv, Device.DeviceType.FromString(Device.DeviceType.Tv.toString()));
|
||||||
|
assertEquals(Device.DeviceType.Computer, Device.DeviceType.FromString(""));
|
||||||
|
assertEquals(Device.DeviceType.Computer, Device.DeviceType.FromString(null));
|
||||||
|
}
|
||||||
|
|
||||||
// Basic paired device testing
|
// Basic paired device testing
|
||||||
@Test
|
@Test
|
||||||
public void testDevice() {
|
public void testDevice() {
|
||||||
|
Reference in New Issue
Block a user