1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
import javazoom.spi.mpeg.sampled.file.PropertiesTest;
import javazoom.spi.mpeg.sampled.file.MpegAudioFileReaderTest;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author Administrateur
*
*/
public class AllSPITests
{
public static Test suite()
{
TestSuite suite = new TestSuite("Test for default package");
//$JUnit-BEGIN$
suite.addTest(new TestSuite(MpegAudioFileReaderTest.class));
suite.addTest(new TestSuite(PropertiesTest.class));
suite.addTest(new TestSuite(PlayerTest.class));
//$JUnit-END$
return suite;
}
}
|