Moves stuff around
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
Fixes packages for use with maven Updates pom Fixes broken link in licence Updates Jenkinsfile
This commit is contained in:
19
src/test/java/ffmpegconverter/AnimeConverterTest.java
Normal file
19
src/test/java/ffmpegconverter/AnimeConverterTest.java
Normal file
@ -0,0 +1,19 @@
|
||||
package ffmpegconverter;
|
||||
|
||||
import ffmpegconverter.converter.AnimeConverter;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class AnimeConverterTest {
|
||||
@Before
|
||||
public void setUp() {
|
||||
AnimeConverter converter = new AnimeConverter("ffprobe", "ffmpeg", new String[]{"jpn","eng","nor","swe"}, new String[]{"nor","eng","swe","fin"}, false, false);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void weirdTest() {
|
||||
assertEquals(0, 0);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user