Ooui-tws-port/Tests/EventTargetTests.cs

19 lines
331 B
C#
Raw Normal View History

2017-06-18 06:21:49 +00:00
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Ooui;
namespace Tests
{
[TestClass]
public class EventTargetTests
{
[TestMethod]
public void CreationState ()
{
var b = new Button ();
Assert.AreEqual (1, b.StateMessages.Count);
}
}
}