mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
d1775cf1b4
* improved name-matching, normalizing of names * unit-test for new similarity metrics * improved PreferencesList * added EventList->List synchronizer * included GlazedLists in build
22 lines
463 B
Java
22 lines
463 B
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
import junit.framework.JUnit4TestAdapter;
|
|
import junit.framework.Test;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses( { FunctionIteratorTest.class, PreferencesMapTest.class, PreferencesListTest.class })
|
|
public class TunedTestSuite {
|
|
|
|
public static Test suite() {
|
|
return new JUnit4TestAdapter(TunedTestSuite.class);
|
|
}
|
|
|
|
}
|