Moves stuff around
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:
2020-02-11 18:48:49 +01:00
parent 3a051abf2c
commit 0b3d46c704
13 changed files with 99 additions and 1 deletions

View 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);
}
}