xamarin-macios/tests/monotouch-test/UIKit/PopoverBackgroundViewTest.cs

30 строки
585 B
C#

// Copyright 2011 Xamarin Inc. All rights reserved
#if !__WATCHOS__ && !MONOMAC
using System;
using System.Drawing;
using CoreGraphics;
using Foundation;
using UIKit;
using NUnit.Framework;
namespace MonoTouchFixtures.UIKit {
[TestFixture]
[Preserve (AllMembers = true)]
public class PopoverBackgroundViewTest {
[Test]
public void InitWithFrame ()
{
var frame = new CGRect (10, 10, 100, 100);
using (UIPopoverBackgroundView pbv = new UIPopoverBackgroundView (frame)) {
Assert.That (pbv.Frame, Is.EqualTo (frame), "Frame");
}
}
}
}
#endif // !__WATCHOS__