public void IterateIgnoreNull()
 {
     Assert.Throws(typeof(System.ArgumentNullException), () =>
     {
         TransformExtensions.EnumerateHierarchy(null, new List <Transform>(0));
     });
 }