View Javadoc
1   package org.apache.maven.scm.provider.git.jgit.command.checkout;
2   
3   
4   /*
5    * Licensed to the Apache Software Foundation (ASF) under one
6    * or more contributor license agreements.  See the NOTICE file
7    * distributed with this work for additional information
8    * regarding copyright ownership.  The ASF licenses this file
9    * to you under the Apache License, Version 2.0 (the
10   * "License"); you may not use this file except in compliance
11   * with the License.  You may obtain a copy of the License at
12   *
13   * http://www.apache.org/licenses/LICENSE-2.0
14   *
15   * Unless required by applicable law or agreed to in writing,
16   * software distributed under the License is distributed on an
17   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18   * KIND, either express or implied.  See the License for the
19   * specific language governing permissions and limitations
20   * under the License.
21   */
22  
23  import java.io.File;
24  import java.io.IOException;
25  
26  import org.apache.maven.scm.provider.git.GitScmTestUtils;
27  import org.apache.maven.scm.provider.git.command.checkout.GitCheckOutCommandTckTest;
28  import org.eclipse.jgit.util.FileUtils;
29  
30  /**
31   * @author <a href="mailto:struberg@yahoo.de">Mark Struberg</a>
32   */
33  public class JGitCheckOutCommandTckTest
34      extends GitCheckOutCommandTckTest
35  {
36      /**
37       * {@inheritDoc}
38       */
39      public String getScmUrl()
40          throws Exception
41      {
42          return GitScmTestUtils.getScmUrl( getRepositoryRoot(), "jgit" );
43      }
44  
45      @Override
46      protected void deleteDirectory( File directory )
47          throws IOException
48      {
49          if ( directory.exists() )
50          {
51              FileUtils.delete( directory, FileUtils.RECURSIVE | FileUtils.RETRY );    
52          }
53      }
54  }