/// <exception cref="System.Exception"></exception>
 protected override void Store()
 {
     FatalExceptionInNestedCallTestCase.Item childItem = new FatalExceptionInNestedCallTestCase.Item
                                                             (null, 1);
     FatalExceptionInNestedCallTestCase.Item parentItem = new FatalExceptionInNestedCallTestCase.Item
                                                              (childItem, 0);
     Store(parentItem);
 }
		/// <exception cref="System.Exception"></exception>
		protected override void Store()
		{
			FatalExceptionInNestedCallTestCase.Item childItem = new FatalExceptionInNestedCallTestCase.Item
				(null, 1);
			FatalExceptionInNestedCallTestCase.Item parentItem = new FatalExceptionInNestedCallTestCase.Item
				(childItem, 0);
			Store(parentItem);
		}
 public Item(FatalExceptionInNestedCallTestCase.Item child, int depth)
 {
     _child = child;
     _depth = depth;
 }
			public Item(FatalExceptionInNestedCallTestCase.Item child, int depth)
			{
				_child = child;
				_depth = depth;
			}