01: /*
02: * Created on Jun 2, 2003
03: *
04: /*
05:
06: Copyright (c) 2002 eInnovation Inc. All rights reserved.
07:
08: Redistribution and use in source and binary forms, with or without modification,
09: are permitted provided that the following conditions are met:
10:
11: 1. Redistributions of source code must retain the above copyright notice, this
12: list of conditions and the following disclaimer.
13:
14: 2. Redistributions in binary form must reproduce the above copyright notice,
15: this list of conditions and the following disclaimer in the documentation
16: and/or other materials provided with the distribution.
17:
18: 3. The end-user documentation included with the redistribution, if any, must
19: include the following acknowledgment:
20:
21: "This product includes software developed by eInnovation Inc.
22: (http://www.einnovation.com/)."
23:
24: Alternately, this acknowledgment may appear in the software itself, if and
25: wherever such third-party acknowledgments normally appear.
26:
27: 4. The names "openedit" and "eInnovation" must not be used to endorse or
28: promote products derived from this software without prior written
29: permission. For written permission, please contact info@einnovation.com.
30:
31: 5. Products derived from this software may not be called "openedit", nor may
32: "openedit" appear in their name, without prior written permission of
33: eInnovation Inc.
34:
35: THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
36: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
37: FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE
38: SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
39: INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40: LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
41: PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
42: LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
43: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
44: ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45:
46: *******************************************************************************/
47: package com.openedit.page.finder;
48:
49: import junit.framework.Test;
50: import junit.framework.TestSuite;
51:
52: /**
53: * @author Matt Avery, mavery@einnovation.com
54: */
55: public class AllTests {
56:
57: public static Test suite() {
58: TestSuite suite = new TestSuite(
59: "Test for com.openedit.page.finder");
60: //$JUnit-BEGIN$
61: suite.addTest(new TestSuite(InfiniteLoopTest.class));
62: //$JUnit-END$
63: return suite;
64: }
65: }
|