public void MethodIsInputChar()
        {
            // Basically, show that this method always returns true
            InputCharControl m      = new InputCharControl();
            bool             result = true;

            for (int i = 0; i < 256; i++)
            {
                result &= m.PublicIsInputChar((char)i);
            }

            Assert.AreEqual(true, result, "I1");
        }
예제 #2
0
		public void MethodIsInputChar ()
		{
			// Basically, show that this method always returns true
			InputCharControl m = new InputCharControl ();
			bool result = true;

			for (int i = 0; i < 256; i++)
				result &= m.PublicIsInputChar ((char)i);

			Assert.AreEqual (true, result, "I1");
		}