GetRepositoryPath() public static method

public static GetRepositoryPath ( string repositoryPath ) : string
repositoryPath string
return string
 public TestRepository(string repositoryName, bool obliterateOnDispose)
 {
     _physicalPath = Git.GetRepositoryPath(repositoryName);
     _environment  = new TestEnvironment {
         RepositoryPath = _physicalPath
     };
     _repository          = new GitExeRepository(_environment, new MockDeploymentSettingsManager(), NullTracerFactory.Instance);
     _obliterateOnDispose = obliterateOnDispose;
 }
Beispiel #2
0
 public TestRepository(string repositoryName)
 {
     _physicalPath = Git.GetRepositoryPath(repositoryName);
     _repository   = new GitExeRepository(_physicalPath);
 }