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

31 строка
488 B
C#

//
// Unit tests for NSDecimalNumber
//
// Authors:
// Sebastien Pouliot <sebastien@xamarin.com>
//
// Copyright 2014 Xamarin Inc. All rights reserved.
//
using System;
#if XAMCORE_2_0
using Foundation;
#else
using MonoTouch.Foundation;
#endif
using NUnit.Framework;
namespace MonoTouchFixtures.Foundation {
[TestFixture]
[Preserve (AllMembers = true)]
public class DecimalNumberTest {
[Test]
public void One ()
{
Assert.NotNull (NSDecimalNumber.One, "One");
}
}
}