19 lines
317 B
C#
19 lines
317 B
C#
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|