private static async Task DecryptFileAsync() { IFile file = new LocalFile(_args.Path); await _encryptor.DecryptAsync(file); }
public async Task DecryptAsync_ThrowsArgumentNullException_WhenFileParamIsNull() { await _fileEncryptor.DecryptAsync((IFile)null); }