SetPaths() public method

public SetPaths ( IAbsoluteDirectoryPath appPath = null, IAbsoluteDirectoryPath dataPath = null, IAbsoluteDirectoryPath localDataPath = null, IAbsoluteDirectoryPath tempPath = null, IAbsoluteDirectoryPath configPath = null, IAbsoluteDirectoryPath toolPath = null, IAbsoluteDirectoryPath sharedDataPath = null ) : void
appPath IAbsoluteDirectoryPath
dataPath IAbsoluteDirectoryPath
localDataPath IAbsoluteDirectoryPath
tempPath IAbsoluteDirectoryPath
configPath IAbsoluteDirectoryPath
toolPath IAbsoluteDirectoryPath
sharedDataPath IAbsoluteDirectoryPath
return void
 public void Setup() {
     _processManager = A.Fake<IProcessManager>();
     _pathConfiguration = new PathConfiguration();
     CommonBase.AssemblyLoader = SharedSupport.GetAssemblyLoader();
     _pathConfiguration.SetPaths();
     _tempRsyncExe = _pathConfiguration.ToolCygwinBinPath.GetChildFileWithName("rsync.exe");
     _launcher = new RsyncLauncher(_processManager, _pathConfiguration, new RsyncOutputParser());
 }
 public void Setup() {
     _pathConfiguration = new PathConfiguration();
     CommonBase.AssemblyLoader = SharedSupport.GetAssemblyLoader();
     _pathConfiguration.SetPaths();
 }