**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Security / Test / Mono.Math / BigIntegerSetTest.cs
blob8155aee50cb71929da983f32c67a4aa1fe1679df
1 //
2 // MonoTests.Mono.Math.BigIntegerSetTest.cs
3 //
4 // Authors:
5 // Ben Maurer
6 //
7 // Copyright (c) 2003 Ben Maurer. All rights reserved
8 //
10 using System;
11 using Mono.Math;
12 using NUnit.Framework;
14 namespace MonoTests.Mono.Math {
16 [TestFixture]
17 public abstract class BigIntegerTestSet {
19 protected string Name {
20 get { return this.GetType ().Name; }
23 protected void Expect (BigInteger actual, BigInteger expected)
25 Assertion.AssertEquals (Name, expected, actual);