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

19 lines
250 B
C#

using System;
using NUnit.Framework;
using Ooui;
namespace Tests
{
[TestFixture]
public class PresentTests
{
[TestCase]
public void Present ()
{
var b = new Button ("Click Me");
UI.Publish ("/b", b);
UI.Present ("/b");
}
}
}