예제 #1
0
        public TestPackageTask(IPackageTestService testService, IFileSystem fileSystem, IConfigurationSettings configuration, IImageUploadService imageUploadService)
        {
            _testService        = testService;
            _fileSystem         = fileSystem;
            _configuration      = configuration;
            _imageUploadService = imageUploadService;

            if (!string.IsNullOrWhiteSpace(_configuration.PathToVirtualBox))
            {
                _vboxManageExe = _fileSystem.combine_paths(_configuration.PathToVirtualBox, "vboxmanage.exe");
            }
        }
 public TestPackageTask(IPackageTestService testService, IFileSystem fileSystem, IConfigurationSettings configuration)
 {
     _testService   = testService;
     _fileSystem    = fileSystem;
     _configuration = configuration;
 }
예제 #3
0
 public TestPackageTask(IPackageTestService testService, IFileSystem fileSystem, IConfigurationSettings configuration)
 {
     _testService = testService;
     _fileSystem = fileSystem;
     _configuration = configuration;
 }