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

19 lines
250 B
C#
Raw Normal View History

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