DoGetDesignTimeValue() public method

public DoGetDesignTimeValue ( ) : object
return object
Example #1
0
        public void CheckBoxField_GetDesignTimeValue()
        {
            PokerCheckBoxField field = new PokerCheckBoxField();
            bool result = (bool)field.DoGetDesignTimeValue();

            Assert.AreEqual(true, result, "GetDesignTimeValue");
        }
		public void CheckBoxField_GetDesignTimeValue ()
		{
			PokerCheckBoxField field = new PokerCheckBoxField ();
			bool result = (bool)field.DoGetDesignTimeValue ();
			Assert.AreEqual (true, result, "GetDesignTimeValue");
		}