01: /*
02: * Bossa Workflow System
03: *
04: * $Id: NotifyTestSuite.java,v 1.2 2003/10/28 16:17:55 gdvieira Exp $
05: *
06: * Copyright (C) 2003 OpenBR Sistemas S/C Ltda.
07: *
08: * This file is part of Bossa.
09: *
10: * Bossa is free software; you can redistribute it and/or modify it
11: * under the terms of version 2 of the GNU General Public License as
12: * published by the Free Software Foundation.
13: *
14: * This program is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17: * General Public License for more details.
18: *
19: * You should have received a copy of the GNU General Public
20: * License along with this program; if not, write to the
21: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22: * Boston, MA 02111-1307, USA.
23: */
24:
25: package com.bigbross.bossa.notify;
26:
27: import junit.framework.Test;
28: import junit.framework.TestCase;
29: import junit.framework.TestSuite;
30:
31: /**
32: * Tests using Notify package testcases.
33: *
34: * @author <a href="http://www.bigbross.com">BigBross Team</a>
35: */
36: public class NotifyTestSuite extends TestCase {
37:
38: /**
39: * Constructor.
40: *
41: * @param name the name.
42: */
43: public NotifyTestSuite(String name) {
44: super (name);
45: }
46:
47: /**
48: * Makes the test suite.
49: *
50: * @return the suite.
51: */
52: public static Test suite() {
53: TestSuite suite = new TestSuite("Notify Test Suite");
54: /* All tests should be added here. */
55: suite.addTest(new TestSuite(NotificationBusTest.class));
56: suite.addTest(new TestSuite(EventsNotificationTest.class));
57: return suite;
58: }
59: }
|