diff --git a/app/src/androidTest/java/org/schabi/newpipe/TestIfCIFailsTest.java b/app/src/androidTest/java/org/schabi/newpipe/TestIfCIFailsTest.java new file mode 100644 index 000000000..734a7237e --- /dev/null +++ b/app/src/androidTest/java/org/schabi/newpipe/TestIfCIFailsTest.java @@ -0,0 +1,31 @@ +package org.schabi.newpipe; + +import android.test.AndroidTestCase; + +/** + * Created by the-scrabi on 29.12.15. + * + * Copyright (C) Christian Schabesberger 2015 + * TestIfCIFailesTest.java is part of NewPipe. + * + * NewPipe is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * NewPipe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with NewPipe. If not, see . + */ + + +// test if CI realy shows if test fails +public class TestIfCIFailsTest extends AndroidTestCase { + public void testFail() { + assertEquals(1, 0); + } +} diff --git a/app/src/androidTest/java/org/schabi/newpipe/services/youtube/YoutubeSearchEngineTest.java b/app/src/androidTest/java/org/schabi/newpipe/services/youtube/YoutubeSearchEngineTest.java index a67d83eb7..03c8006a4 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/services/youtube/YoutubeSearchEngineTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/services/youtube/YoutubeSearchEngineTest.java @@ -8,7 +8,7 @@ import org.schabi.newpipe.services.SearchEngine; * Created by the-scrabi on 29.12.15. * * Copyright (C) Christian Schabesberger 2015 - * DetailsMenuHandler.java is part of NewPipe. + * YoutubeSearchEngineTest.java is part of NewPipe. * * NewPipe is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by