xamarin-macios/tests/monotouch-test/Foundation/NotificationQueueTest.cs

30 строки
540 B
C#

//
// Unit tests for NotificationQueue
//
// Authors:
// Sebastien Pouliot <sebastien@xamarin.com>
//
// Copyright 2013 Xamarin Inc. All rights reserved.
//
#if XAMCORE_2_0
using Foundation;
#else
using MonoTouch.Foundation;
#endif
using NUnit.Framework;
namespace MonoTouchFixtures.Foundation {
[TestFixture]
[Preserve (AllMembers = true)]
public class NotificationQueueTest {
[Test]
public void DefaultQueue ()
{
Assert.That (NSNotificationQueue.DefaultQueue, Is.TypeOf<NSNotificationQueue> (), "DefaultQueue");
}
}
}