File: AllTests.java

package info (click to toggle)
libjlayer-java 1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 712 kB
  • ctags: 1,039
  • sloc: java: 8,145; xml: 47; sh: 30; makefile: 9
file content (39 lines) | stat: -rw-r--r-- 1,420 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * 11/19/04		1.0 moved to LGPL.
 *-----------------------------------------------------------------------
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Library General Public License as published
 *   by the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU Library General Public License for more details.
 *
 *   You should have received a copy of the GNU Library General Public
 *   License along with this program; if not, write to the Free Software
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *----------------------------------------------------------------------
 */

import javazoom.jl.decoder.BitstreamTest;
import javazoom.jl.player.jlpTest;
import junit.framework.Test;
import junit.framework.TestSuite;

/**
 * JavaLayer test suite.
 */
public class AllTests
{
	public static Test suite()
	{
		TestSuite suite = new TestSuite("Test for javazoom.jl.decoder");
		//$JUnit-BEGIN$
		suite.addTest(new TestSuite(BitstreamTest.class));
		suite.addTest(new TestSuite(jlpTest.class));
		//$JUnit-END$
		return suite;
	}
}