mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
74b6a8c1a9
* added unit test for ByteBufferOutputStream
22 lines
469 B
Java
22 lines
469 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( { ByteBufferOutputStreamTest.class, PreferencesMapTest.class, PreferencesListTest.class })
|
|
public class TunedTestSuite {
|
|
|
|
public static Test suite() {
|
|
return new JUnit4TestAdapter(TunedTestSuite.class);
|
|
}
|
|
|
|
}
|