01 /* 
02  *  TestCvsVersionControl.java 
03  *  Copyright (c) 1998-2008, The University of Sheffield. 
04  * 
05  *  This code is from the GATE project (http://gate.ac.uk/) and is free 
06  *  software licenced under the GNU General Public License version 3. It is 
07  *  distributed without any warranty. For more details see COPYING.txt in the 
08  *  top level directory (or at http://gatewiki.sf.net/COPYING.txt). 
09  *   
10  *  Hamish Cunningham 8/Sep/2005 
11  */ 
12  
13 package gate.versioning.cmdline; 
14  
15 import junit.framework.*; 
16  
17 /** 
18  * Tests for CVS version control API 
19  */ 
20 public class TestCvsVersionControl extends AbstractTestVersionControl { 
21  
22   protected String getRepType() { 
23     return "gate.versioning.cmdline.CvsRepository"; 
24   } 
25  
26   protected String getRootName() { return "cvsroot"; } 
27  
28   protected String getRootPrefix() { return ""; } 
29  
30   public TestCvsVersionControl(String name) { super(name); } 
31  
32   public static Test suite() { 
33     TestSuite suite = new TestSuite(); 
34 //    suite.addTestSuite(TestCvsVersionControl.class); 
35     return suite; 
36   } 
37    
38 } // TestCvsVersionControl
    
    |