Ooui-tws-port/PlatformTests/iOSTests/PresentTests.cs

19 lines
243 B
C#
Raw Normal View History

2017-07-07 18:47:59 +00:00
using System;
using NUnit.Framework;
using Ooui;
namespace iOSTests
{
[TestFixture]
public class PresentTests
{
[TestCase]
public void Present ()
{
var b = new Button ();
UI.Publish ("/b", b);
UI.Present ("/b");
}
}
}