1 17 18 package org.apache.james.imapserver; 19 20 import junit.framework.Test; 21 import junit.framework.TestSuite; 22 23 public class TestSelected 24 extends TestAuthenticated 25 { 26 public TestSelected( String name ) 27 { 28 super( name ); 29 } 30 31 public void setUp() throws Exception  32 { 33 super.setUp(); 34 addTestFile( "SelectInbox.test" ); 35 } 36 37 public static Test suite() throws Exception  38 { 39 TestSuite suite = new TestSuite(); 40 suite.addTest( new TestSelected( "FetchSingleMessage" ) ); 41 suite.addTest( new TestSelected( "FetchMultipleMessages" ) ); 42 return suite; 43 } 44 } 45 | Popular Tags |