public async Task GetSourcePaths() { // Given _configService .Config() .Returns( new JsonConfig { DryRun = true, IncludeMyPath = true }); var operatingSystemLayerWindows = new OperatingSystemLayerWindows(_configService); Assert.NotNull(await operatingSystemLayerWindows.SourcePaths()); }
public async Task CreateTargetBaseLocation() { // Given _configService .Config() .Returns( new JsonConfig { DryRun = true, DestinationDirectory = "" }); var operatingSystemLayerWindows = new OperatingSystemLayerWindows(_configService); await operatingSystemLayerWindows.CreateTargetBaseLocation(); }
public OperatingSystemLayerWindowsTests() { _operatingSystemLayerWindows = new OperatingSystemLayerWindows(_configService); }