mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-24 00:38:52 -05:00
15 lines
341 B
Java
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());
|
|
}
|
|
}
|