1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-24 00:38:52 -05:00
filebot/test/net/filebot/media/MediaDetectionTest.java
2016-02-10 11:47:17 +00:00

15 lines
341 B
Java

package net.filebot.media;
import static org.junit.Assert.*;
import org.junit.Test;
public class MediaDetectionTest {
@Test
public void parseMovieYear() {
assertEquals("[2009]", MediaDetection.parseMovieYear("Avatar 2009 2100").toString());
assertEquals("[1955]", MediaDetection.parseMovieYear("1898 Sissi 1955").toString());
}
}