mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
405f04b9dd
* added some unit tests
22 lines
453 B
Java
22 lines
453 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 TestSuite {
|
|
|
|
public static Test suite() {
|
|
return new JUnit4TestAdapter(TestSuite.class);
|
|
}
|
|
|
|
}
|