Eto.Test.Sections.CategoryFilter.GetParents C# (CSharp) Méthode

GetParents() protected static méthode

protected static GetParents ( ITest test ) : IEnumerable
test ITest
Résultat IEnumerable
		protected static IEnumerable<ITest> GetParents(ITest test)
		{
			while (test != null)
			{
				yield return test;
				test = test.Parent;
			}
		}