KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > test > notification > PackageTest


1 package org.jacorb.test.notification;
2
3 /*
4  * JacORB - a free Java ORB
5  *
6  * Copyright (C) 1999-2003 Gerald Brose
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the Free
20  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */

23
24 import junit.framework.Test;
25 import junit.framework.TestCase;
26 import junit.framework.TestSuite;
27
28 /**
29  * @author Alphonse Bendt
30  */

31
32 public class PackageTest extends TestCase
33 {
34     public PackageTest(String JavaDoc name)
35     {
36         super(name);
37     }
38
39     public static Test suite() throws Exception JavaDoc
40     {
41         TestSuite _suite = new TestSuite("Tests in Package org.jacorb.test.notification");
42
43         _suite.addTest(EventChannelFactoryTest.suite());
44         _suite.addTest(TimeoutTest.suite());
45         _suite.addTest(StopTimeTest.suite());
46         _suite.addTest(StartTimeTest.suite());
47         _suite.addTest(EventChannelTest.suite());
48         _suite.addTest(CosEventChannelTest.suite());
49         _suite.addTest(StructuredEventChannelTest.suite());
50         _suite.addTest(SequenceEventChannelTest.suite());
51         _suite.addTest(InterFilterGroupOperatorTest.suite());
52         _suite.addTest(AdminLimitTest.suite());
53         _suite.addTest(FilterImplTest.suite());
54         _suite.addTest(FilterTest.suite());
55         _suite.addTest(MappingFilterTest.suite());
56         _suite.addTest(MessageFactoryTest.suite());
57         _suite.addTest(MessageUtilsTest.suite());
58         _suite.addTest(NotificationEventTest.suite());
59         _suite.addTest(CollectionsWrapperTest.suite());
60         _suite.addTest(PropertyValidatorTest.suite());
61         _suite.addTest(OfferManagerTest.suite());
62         _suite.addTest(AnyMessageTest.suite());
63         _suite.addTest(StructuredEventMessageTest.suite());
64         _suite.addTest(TypedEventMessageTest.suite());
65         _suite.addTest(FilterManagerTest.suite());
66         
67         return _suite;
68     }
69 }
Popular Tags