TestSvnVersionControl.java
01 /*
02  *  TestSvnVersionControl.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 SVN version control API
19  */
20 public class TestSvnVersionControl extends AbstractTestVersionControl {
21 
22   protected String getRepType() {
23     return "gate.versioning.cmdline.SvnRepository";
24   }
25 
26   protected String getRootName() { return "svnroot"}
27 
28   protected String getRootPrefix() { return "file:///"}
29 
30   public TestSvnVersionControl(String name) { super(name)}
31 
32   public static Test suite() {
33     TestSuite suite = new TestSuite();
34 //    suite.addTestSuite(TestSvnVersionControl.class);
35     return suite;
36   }
37   
38 // TestSvnVersionControl