File: AllTests.java

package info (click to toggle)
libjchart2d-java 3.2.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,808 kB
  • ctags: 3,689
  • sloc: java: 24,854; xml: 831; makefile: 13
file content (66 lines) | stat: -rw-r--r-- 1,948 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 *
 *  AllTests.java, invokes all tests for package 
 *  info.monitorenter.gui.chart.
 *  Copyright (C) Achim Westermann, created on 23.04.2005, 15:24:13
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 * 
 *  This library 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
 *  Lesser General Public License for more details.
 * 
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 *  If you modify or optimize the code in a useful way please let me know.
 *  Achim.Westermann@gmx.de
 *
 */
package info.monitorenter.gui.chart;

import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

/**
 * Main test suite for the package <code>{@link info.monitorenter.gui.chart}</code>.<p>
 * 
 * @author Achim westermann
 * @version $Revision: 1.6 $
 * 
 * @since 2.1.0
 */

@RunWith(Suite.class)
@SuiteClasses( { TestMultiThreadingAndTracing.class, TestChart2DHeadless.class,TestMultithreading.class,TestChartOperationsVisual.class})

public final class AllTests {

  /**
   * Returns the JUnit test suite for this package.<p>
   * 
   * @return the JUnit test suite for this package
   */
  public static Test suite() {

    return new JUnit4TestAdapter(AllTests.class);

  }

  /**
   * Hide constructor to prevent generation of class instances.<p>
   */
  private AllTests() {

    // empty
  }
}