File: AllSPITests.java

package info (click to toggle)
libmp3spi-java 1.9.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 284 kB
  • sloc: java: 2,191; xml: 98; makefile: 13
file content (23 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (3)
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;
	}
}