adb4d68055
* AbstractSearchPanel (used in SubtitlePanel only so far) * started using GlazedLists * replaced searchtextfield with customized combobox (will be used for completion in the future) * renamed FileFormat to FileUtil and move to tuned * removed ESC shortcut
19 lines
417 B
Java
19 lines
417 B
Java
|
|
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( { net.sourceforge.tuned.TestSuite.class, net.sourceforge.filebot.TestSuite.class })
|
|
public class AllTests {
|
|
|
|
public static Test suite() {
|
|
return new JUnit4TestAdapter(AllTests.class);
|
|
}
|
|
|
|
}
|