Ooui-tws-port/Tests/ButtonTests.cs

19 lines
317 B
C#
Raw Normal View History

2017-06-14 03:42:06 +00:00
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Ooui;
namespace Tests
{
[TestClass]
public class ButtonTests
{
[TestMethod]
public void DefaultCtor ()
{
var b = new Button ();
Assert.AreEqual ("", b.TextContent);
}
}
}