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