| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- //
- // Author:
- // Rolf Bjarne Kvinge ([email protected])
- //
- // (C) 2007 Novell, Inc. (http://www.novell.com)
- //
- using System;
- using System.Windows.Forms;
- using System.Drawing;
- using System.Reflection;
- using System.ComponentModel;
- using NUnit.Framework;
- using System.Threading;
- namespace MonoTests.System.Windows.Forms
- {
- [TestFixture]
- public class KeyEventArgsTest : TestHelper
- {
- #if NET_2_0
- [Test]
- public void SuppressKeyPressTest ()
- {
- KeyEventArgs kea = new KeyEventArgs (Keys.L);
-
- Assert.IsFalse (kea.SuppressKeyPress, "#01");
- Assert.IsFalse (kea.Handled, "#02");
-
- kea.SuppressKeyPress = true;
-
- Assert.IsTrue (kea.SuppressKeyPress, "#03");
- Assert.IsTrue (kea.Handled, "#04");
-
- kea.SuppressKeyPress = false;
-
- Assert.IsFalse (kea.SuppressKeyPress, "#05");
- Assert.IsFalse (kea.Handled, "#06");
-
- }
- #endif
- }
- }
|