mpir/build.vc11/mpir.net/mpir.net-tests/HugeIntTests/ObjectOverrides.cs
2014-03-04 21:08:50 -05:00

52 lines
1.5 KiB
C#

/*
Copyright 2014 Alex Dyachenko
This file is part of the MPIR Library.
The MPIR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
The MPIR Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the MPIR Library. If not, see http://www.gnu.org/licenses/.
*/
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace MPIR.Tests.HugeIntTests
{
[TestClass]
public class ObjectOverrides
{
[TestMethod]
public void ToStringDecimal()
{
var n = "-23429384756298357462983476598345623984756";
using (var a = new HugeInt(n))
{
Assert.AreEqual(n, a.ToString());
}
}
[TestMethod]
public void ToStringHex()
{
var n = "-23429abcdef298357462983fedcba345623984756";
using (var a = new HugeInt(n, 16))
{
Assert.AreEqual(n, a.ToString(16));
Assert.AreEqual(n.ToUpper(), a.ToString(-16));
}
}
//todo truncated test
}
}