Files
linux-packaging-mono/mcs/class/System.Windows.Forms/Test/System.Windows.Forms/HelpProviderTest.cs
Xamarin Public Jenkins c042cd0c52 Imported Upstream version 4.2.0.179
Former-commit-id: 4610231f55806d2a05ed69e5ff3faa7336cc1479
2015-11-10 15:03:43 +00:00

24 lines
420 B
C#

using System;
using NUnit.Framework;
using System.Windows.Forms;
using System.Drawing;
namespace MonoTests.System.Windows.Forms
{
[TestFixture]
public class HelpProviderTest : TestHelper
{
[Test]
public void HelpProviderPropertyTag ()
{
HelpProvider md = new HelpProvider ();
object s = "MyString";
Assert.AreEqual (null, md.Tag, "A1");
md.Tag = s;
Assert.AreSame (s, md.Tag, "A2");
}
}
}