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

38 строки
676 B
C#

//
// NSTextContainer Unit Tests
//
// Authors:
// Sebastien Pouliot <sebastien@xamarin.com>
//
// Copyright 2013 Xamarin Inc. All rights reserved.
//
#if !__WATCHOS__ && !MONOMAC
using System;
using Foundation;
using UIKit;
using ObjCRuntime;
using NUnit.Framework;
using Xamarin.Utils;
namespace MonoTouchFixtures.UIKit {
[TestFixture]
[Preserve (AllMembers = true)]
public class TextContainerTest {
[Test]
public void Layout ()
{
TestRuntime.AssertSystemVersion (ApplePlatform.iOS, 7, 0, throwIfOtherPlatform: false);
using (var tc = new NSTextContainer ()) {
Assert.Null (tc.LayoutManager, "LayoutManager");
}
}
}
}
#endif // !__WATCHOS__