public void ApplyLayerCacheRecursivelyNull()
 {
     Assert.Throws(typeof(System.ArgumentNullException), () =>
     {
         Dictionary <GameObject, int> layerCache = new Dictionary <GameObject, int>();
         GameObjectExtensions.ApplyLayerCacheRecursively(null, layerCache);
     });
 }