1 17 18 package org.apache.james.remotemanager; 19 20 import junit.framework.Test; 21 import junit.framework.TestSuite; 22 23 27 public final class InitialImapUsersTest 28 extends TestRemoteManager 29 { 30 public InitialImapUsersTest( String s ) throws Exception  31 { 32 super( s ); 33 } 34 35 public static Test suite() throws Exception  36 { 37 TestSuite suite = new TestSuite(); 38 suite.addTest( new InitialImapUsersTest( "InitialUsers" ) ); 39 return suite; 40 } 41 } 42 | Popular Tags |