KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > users > filesystem > AllTests


1 /*
2
3  Copyright (c) 2002 eInnovation Inc. All rights reserved.
4
5  Redistribution and use in source and binary forms, with or without modification,
6  are permitted provided that the following conditions are met:
7
8  1. Redistributions of source code must retain the above copyright notice, this
9  list of conditions and the following disclaimer.
10
11  2. Redistributions in binary form must reproduce the above copyright notice,
12  this list of conditions and the following disclaimer in the documentation
13  and/or other materials provided with the distribution.
14
15  3. The end-user documentation included with the redistribution, if any, must
16  include the following acknowledgment:
17
18  "This product includes software developed by eInnovation Inc.
19  (http://www.einnovation.com/)."
20
21  Alternately, this acknowledgment may appear in the software itself, if and
22  wherever such third-party acknowledgments normally appear.
23
24  4. The names "openedit" and "eInnovation" must not be used to endorse or
25  promote products derived from this software without prior written
26  permission. For written permission, please contact info@einnovation.com.
27
28  5. Products derived from this software may not be called "openedit", nor may
29  "openedit" appear in their name, without prior written permission of
30  eInnovation Inc.
31
32  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
33  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
34  FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE
35  SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
36  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
38  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
39  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
40  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
41  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
43  *******************************************************************************/

44
45 package com.openedit.users.filesystem;
46
47 import junit.framework.Test;
48 import junit.framework.TestSuite;
49
50 /**
51  * DOCUMENT ME!
52  *
53  * @author
54  * @version 1.0
55  */

56 public class AllTests {
57
58
59     /**
60      *
61      *
62      * @return
63      */

64     public static Test suite() {
65         TestSuite suite = new TestSuite("Test for com.openedit.users.filesystem");
66
67         //$JUnit-BEGIN$
68
suite.addTest( new TestSuite( GroupTest.class ) );
69         suite.addTest( new TestSuite( StringEncrypterTest.class) );
70         suite.addTest( new TestSuite( UserManagerTest.class));
71         
72         //$JUnit-END$
73
return suite;
74     }
75 }
Popular Tags