Viki.LoadRunner.Engine.Executor.Context.TestContext.GetErrors C# (CSharp) Метод

GetErrors() публичный Метод

public GetErrors ( ) : Exception>>.IEnumerable
Результат Exception>>.IEnumerable
        public IEnumerable<KeyValuePair<string, Exception>> GetErrors()
        {
            return
                _checkpoints
                    .Where(c => c.Error != null)
                    .Select(c => new KeyValuePair<string, Exception>(c.Name, c.Error));
        }