1 17 18 package org.apache.james.imapserver; 19 20 import junit.framework.Test; 21 import junit.framework.TestSuite; 22 import junit.framework.TestCase; 23 import org.apache.james.remotemanager.UserManagementTest; 24 25 public final class InitialUsers 26 extends TestCase implements IMAPTest 27 { 28 public InitialUsers( String s ) 29 { 30 super( s ); 31 } 32 33 public static Test suite() throws Exception  34 { 35 TestSuite suite = new TestSuite(); 36 suite.addTest( new UserManagementTest( "addUser", USER, PASSWORD ) ); 37 return suite; 38 } 39 } 40 | Popular Tags |