xamarin-macios/tests/monotouch-test/iAd/BannerViewTest.cs

41 строка
896 B
C#

// Copyright 2011 Xamarin Inc. All rights reserved
#if !__TVOS__ && !__WATCHOS__ && !MONOMAC
using System;
using CoreGraphics;
using Foundation;
#if !__WATCHOS__
using iAd;
#endif
using NUnit.Framework;
namespace MonoTouchFixtures.iAd {
[TestFixture]
[Preserve (AllMembers = true)]
public class BannerViewTest {
[Test]
public void InitWithFrame ()
{
var frame = new CGRect (10, 10, 100, 100);
using (ADBannerView bv = new ADBannerView (frame)) {
Assert.That (bv.Frame.X, Is.EqualTo (frame.X), "X");
Assert.That (bv.Frame.Y, Is.EqualTo (frame.Y), "Y");
// Width and Height are set by the Ad (e.g. 320 x 50 for the iPhone)
}
}
[Test]
public void GetClampedBannerSize ()
{
var size = new CGSize (2.0, 2.0);
var result = ADBannerView.GetClampedBannerSize (size);
Assert.IsFalse (result.IsEmpty);
}
}
}
#endif // !__TVOS__ && !__WATCHOS__