Convert assertTrue(!..) to assertFalse

This commit is contained in:
Coffeemakr 2017-11-25 02:07:12 +01:00
parent d4b72f539b
commit b5b9f8645c
No known key found for this signature in database
GPG Key ID: 3F35676D8FF6E743
3 changed files with 6 additions and 6 deletions

View File

@ -47,7 +47,7 @@ public class SoundcloudChannelExtractorTest {
@Test @Test
public void testGetStreams() throws Exception { public void testGetStreams() throws Exception {
assertTrue("no streams are received", !extractor.getStreams().getItemList().isEmpty()); assertFalse("no streams are received", extractor.getStreams().getItemList().isEmpty());
} }
@Test @Test

View File

@ -23,12 +23,12 @@ import static org.schabi.newpipe.extractor.ServiceList.SoundCloud;
* Test for {@link StreamExtractor} * Test for {@link StreamExtractor}
*/ */
public class SoundcloudStreamExtractorDefaultTest { public class SoundcloudStreamExtractorDefaultTest {
private StreamExtractor extractor; private SoundcloudStreamExtractor extractor;
@Before @Before
public void setUp() throws Exception { public void setUp() throws Exception {
NewPipe.init(Downloader.getInstance()); NewPipe.init(Downloader.getInstance());
extractor = SoundCloud.getService().getStreamExtractor("https://soundcloud.com/liluzivert/do-what-i-want-produced-by-maaly-raw-don-cannon"); extractor = (SoundcloudStreamExtractor) SoundCloud.getService().getStreamExtractor("https://soundcloud.com/liluzivert/do-what-i-want-produced-by-maaly-raw-don-cannon");
} }
@Test @Test
@ -91,7 +91,7 @@ public class SoundcloudStreamExtractorDefaultTest {
@Test @Test
public void testGetAudioStreams() throws IOException, ExtractionException { public void testGetAudioStreams() throws IOException, ExtractionException {
assertTrue(!extractor.getAudioStreams().isEmpty()); assertFalse(extractor.getAudioStreams().isEmpty());
} }
@Test @Test

View File

@ -62,7 +62,7 @@ public class YoutubeStreamExtractorDefaultTest {
@Test @Test
public void testGetTitle() throws ParsingException { public void testGetTitle() throws ParsingException {
assertTrue(!extractor.getName().isEmpty()); assertFalse(extractor.getName().isEmpty());
} }
@Test @Test
@ -113,7 +113,7 @@ public class YoutubeStreamExtractorDefaultTest {
@Test @Test
public void testGetAudioStreams() throws IOException, ExtractionException { public void testGetAudioStreams() throws IOException, ExtractionException {
assertTrue(!extractor.getAudioStreams().isEmpty()); assertFalse(extractor.getAudioStreams().isEmpty());
} }
@Test @Test