Making sure mono_marshal_free is used instead of g_free in mono_string_builder_to_utf8
[mono.git] / mcs / class / Mono.Security / Test / Mono.Math / BigIntegerSetTest.cs
1 //
2 // MonoTests.Mono.Math.BigIntegerSetTest.cs
3 //
4 // Authors:
5 //      Ben Maurer
6 //
7 // Copyright (c) 2003 Ben Maurer. All rights reserved
8 //
9
10 using System;
11 using Mono.Math;
12 using NUnit.Framework;
13
14 namespace MonoTests.Mono.Math {
15
16         [TestFixture]
17         public abstract class BigIntegerTestSet {
18                 
19                 protected string Name {
20                         get { return this.GetType ().Name; }
21                 }
22
23                 protected void Expect (BigInteger actual, BigInteger expected) 
24                 {
25                         Assertion.AssertEquals (Name, expected, actual);
26                 }
27         }
28 }