diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2021-08-28 00:16:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-28 00:16:27 +0200 |
commit | 87c50ac7a03169b5213b2dce37ac3f8415f6e0cb (patch) | |
tree | 362fb812b7ef015a384563ac3f6556b5434b7806 /app/src/androidTest | |
parent | 542832805c8874bcfe11402d11bf341e9524157d (diff) | |
parent | a7d280d249c6806972a194c93d76ece46f5f41c7 (diff) | |
download | AntennaPod-87c50ac7a03169b5213b2dce37ac3f8415f6e0cb.zip |
Merge pull request #5359 from ByteHamster/remove-suggestions
Removed gpodder suggestions feature
Diffstat (limited to 'app/src/androidTest')
-rw-r--r-- | app/src/androidTest/java/de/test/antennapod/gpodnet/GPodnetServiceTest.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/app/src/androidTest/java/de/test/antennapod/gpodnet/GPodnetServiceTest.java b/app/src/androidTest/java/de/test/antennapod/gpodnet/GPodnetServiceTest.java index 32ad5a694..b13af78f7 100644 --- a/app/src/androidTest/java/de/test/antennapod/gpodnet/GPodnetServiceTest.java +++ b/app/src/androidTest/java/de/test/antennapod/gpodnet/GPodnetServiceTest.java @@ -75,20 +75,6 @@ public class GPodnetServiceTest { } @Test - public void testGetSubscriptionsOfUser() - throws GpodnetServiceException { - authenticate(); - service.getSubscriptionsOfUser(); - } - - @Test - public void testGetSubscriptionsOfDevice() - throws GpodnetServiceException { - authenticate(); - service.getSubscriptionsOfDevice(DEVICE_ID); - } - - @Test public void testConfigureDevices() throws GpodnetServiceException { authenticate(); service.configureDevice("foo", "This is an updated caption", GpodnetDevice.DeviceType.LAPTOP); @@ -101,12 +87,6 @@ public class GPodnetServiceTest { } @Test - public void testGetSuggestions() throws GpodnetServiceException { - authenticate(); - service.getSuggestions(10); - } - - @Test public void testTags() throws GpodnetServiceException { service.getTopTags(20); } |