예제 #1
0
		public void GetSet ()
		{
			DiagnosticsElement el = new DiagnosticsElement ();

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

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