public void GetSet ()
		{
			DiagnosticsElement el = new DiagnosticsElement ();

			el.SuppressReturningExceptions = true;
			Assert.IsTrue (el.SuppressReturningExceptions, "A1");
			el.SuppressReturningExceptions = false;
			Assert.IsFalse (el.SuppressReturningExceptions, "A2");
		}
		public void Defaults ()
		{
			DiagnosticsElement el = new DiagnosticsElement ();

			Assert.IsFalse (el.SuppressReturningExceptions, "A1");
		}