Eto.Test.Sections.CategoryFilter.GetParents C# (CSharp) 메소드

GetParents() 보호된 정적인 메소드

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