1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.pipesandfilters.tests; |
8 | |
9 | import junit.framework.Test; |
10 | import junit.framework.TestSuite; |
11 | |
12 | import junit.textui.TestRunner; |
13 | |
14 | /** |
15 | * <!-- begin-user-doc --> |
16 | * A test suite for the '<em><b>pipesandfilters</b></em>' package. |
17 | * <!-- end-user-doc --> |
18 | * @generated |
19 | */ |
20 | public class pipesandfiltersTests extends TestSuite { |
21 | |
22 | /** |
23 | * <!-- begin-user-doc --> |
24 | * <!-- end-user-doc --> |
25 | * @generated |
26 | */ |
27 | public static void main(String[] args) { |
28 | TestRunner.run(suite()); |
29 | } |
30 | |
31 | /** |
32 | * <!-- begin-user-doc --> |
33 | * <!-- end-user-doc --> |
34 | * @generated |
35 | */ |
36 | public static Test suite() { |
37 | TestSuite suite = new pipesandfiltersTests("pipesandfilters Tests"); |
38 | suite.addTestSuite(RawRecorderTest.class); |
39 | suite.addTestSuite(SimpleWarmUpFilterTest.class); |
40 | suite.addTestSuite(SlidingMeanRecorderTest.class); |
41 | suite.addTestSuite(EDP2WriterTest.class); |
42 | return suite; |
43 | } |
44 | |
45 | /** |
46 | * <!-- begin-user-doc --> |
47 | * <!-- end-user-doc --> |
48 | * @generated |
49 | */ |
50 | public pipesandfiltersTests(String name) { |
51 | super(name); |
52 | } |
53 | |
54 | } //pipesandfiltersTests |