KernowCode.KTest.Logging.Loggers.GetOutputLocation C# (CSharp) Method

GetOutputLocation() public method

public GetOutputLocation ( ) : IEnumerable
return IEnumerable
        public IEnumerable<string> GetOutputLocation()
        {
            var outputLocations = new List<string>();
            WithLoggers(l =>
                {
                    if (l.GetOutputLocation() != null)
                        outputLocations.AddRange(l.GetOutputLocation());
                });
            return outputLocations;
        }