DownloadContentTooltipTests ClassDelta Engine Documentation
Inheritance Hierarchy

System Object
  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

public class DownloadContentTooltipTests

The DownloadContentTooltipTests type exposes the following members.

Constructors

  NameDescription
Public methodDownloadContentTooltipTests
Initializes a new instance of the DownloadContentTooltipTests class
Top
Methods

  NameDescription
Public methodShowDownloadContentTooltip
Top
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