Inheritance Hierarchy
DeltaEngine.Platforms.Tests DownloadContentTooltipTests
Namespace: DeltaEngine.Platforms.Tests
Assembly: DeltaEngine.Platforms.Tests (in DeltaEngine.Platforms.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax
The DownloadContentTooltipTests type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | DownloadContentTooltipTests | Initializes a new instance of the DownloadContentTooltipTests class |
Methods
Name | Description | |
---|---|---|
![]() | ShowDownloadContentTooltip |
Examples
[Test, Ignore] public void ShowDownloadContentTooltip() { Form form = new DownloadContentTooltip(); form.Show(); form.Refresh(); bool isClosed = StackTraceExtensions.StartedFromNCrunchOrNunitConsole; form.Closed += (sender, args) => isClosed = true; while (!isClosed) Application.DoEvents(); form.Close(); }
See Also