public void GLWindowKeyEventSignal() { tlog.Debug(tag, $"GLWindowKeyEventSignal START"); string name = "myGLWindow"; Rectangle rectangle = new Rectangle(20, 20, 100, 100); GLWindow a1 = new GLWindow(name, rectangle, true); a1.KeyEventSignal(); a1.Destroy(); tlog.Debug(tag, $"GLWindowKeyEventSignal END (OK)"); Assert.Pass("GLWindowKeyEventSignal"); }