mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
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);
|
||
|
}
|
||
|
|
||
|
}
|