1   package org.apache.maven.scm.provider.svn;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.scm.provider.svn.command.SvnCommand;
23  
24  import java.io.File;
25  
26  public class TestSvnScmProvider
27      extends AbstractSvnScmProvider
28  {
29      protected SvnCommand getAddCommand()
30      {
31          return null;
32      }
33  
34      protected SvnCommand getBranchCommand()
35      {
36          return null;
37      }
38  
39      protected SvnCommand getChangeLogCommand()
40      {
41          return null;
42      }
43  
44      protected SvnCommand getCheckInCommand()
45      {
46          return null;
47      }
48  
49      protected SvnCommand getCheckOutCommand()
50      {
51          return null;
52      }
53  
54      protected SvnCommand getDiffCommand()
55      {
56          return null;
57      }
58  
59      protected SvnCommand getExportCommand()
60      {
61          return null;
62      }
63  
64      protected SvnCommand getRemoveCommand()
65      {
66          return null;
67      }
68  
69      protected SvnCommand getStatusCommand()
70      {
71          return null;
72      }
73  
74      protected SvnCommand getTagCommand()
75      {
76          return null;
77      }
78  
79      protected SvnCommand getUpdateCommand()
80      {
81          return null;
82      }
83  
84      protected SvnCommand getListCommand()
85      {
86          return null;
87      }
88  
89      protected SvnCommand getInfoCommand()
90      {
91          return null;
92      }
93  
94      protected SvnCommand getBlameCommand()
95      {
96          return null;
97      }
98  
99      protected SvnCommand getMkdirCommand()
100     {     
101         return null;
102     }
103     
104     protected String getRepositoryURL( File path )
105     {
106         return null;
107     }    
108 }