Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2004-11-28 02:06:21 +0300
committerMartin Baulig <martin@novell.com>2004-11-28 02:06:21 +0300
commit29ac2c3ba871c676b97f28c4dec9a7450b3f1614 (patch)
treedf9239b2a3af8b8d0c27dcf6408b0a30159d9912 /mcs/class/Mono.C5
parentaf54d61b95876618b24030aa18f41d75369932cd (diff)
Removed more FIXME's.
svn path=/trunk/mcs/; revision=36703
Diffstat (limited to 'mcs/class/Mono.C5')
-rw-r--r--mcs/class/Mono.C5/Test/arrays/HashedArrayListTest.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/mcs/class/Mono.C5/Test/arrays/HashedArrayListTest.cs b/mcs/class/Mono.C5/Test/arrays/HashedArrayListTest.cs
index a19d994983a..76aa7ee7ca9 100644
--- a/mcs/class/Mono.C5/Test/arrays/HashedArrayListTest.cs
+++ b/mcs/class/Mono.C5/Test/arrays/HashedArrayListTest.cs
@@ -214,7 +214,6 @@ namespace nunit.arrays.hashed
Assert.AreEqual(2, list.Count);
}
-#if FIXME
[Test]
public void AddAll()
{
@@ -228,7 +227,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(IC.eq(list2, 3, 4, 5));
Assert.IsTrue(IC.eq(list, 3, 4, 5));
}
-#endif
[TearDown]
public void Dispose() { list = null; }
@@ -454,7 +452,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(list.ContainsAll(list2));
}
-#if FIXME
[Test]
public void RetainAll()
{
@@ -519,7 +516,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(list.Check());
Assert.IsTrue(IC.eq(list, 7));
}
-#endif
[Test]
@@ -593,7 +589,6 @@ namespace nunit.arrays.hashed
}
-#if FIXME
[Test]
public void RemoveAt()
{
@@ -608,7 +603,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(((HashedArrayList<int>)dit).Check());
Assert.IsTrue(IC.eq(dit, 9, 1));
}
-#endif
[Test]
@@ -635,7 +629,6 @@ namespace nunit.arrays.hashed
dit.RemoveAt(1);
}
-#if FIXME
[Test]
public void RemoveInterval()
{
@@ -661,7 +654,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(((HashedArrayList<int>)dit).Check());
Assert.IsTrue(IC.eq(dit, 30, 40));
}
-#endif
[TearDown]
public void Dispose()
@@ -717,7 +709,6 @@ namespace nunit.arrays.hashed
Assert.AreEqual(34, lst.Last);
}
-#if FIXME
[Test]
public void This()
{
@@ -729,7 +720,6 @@ namespace nunit.arrays.hashed
lst[0] = 45;lst[2] = 78;lst[4] = 101;
Assert.IsTrue(IC.eq(lst, 45, 7, 78, 777, 101));
}
-#endif
[Test]
[ExpectedException(typeof(IndexOutOfRangeException))]
@@ -800,7 +790,6 @@ namespace nunit.arrays.hashed
[TearDown]
public void Dispose() { lst = null; }
-#if FIXME
[Test]
public void Insert()
{
@@ -813,7 +802,6 @@ namespace nunit.arrays.hashed
lst.Insert(3, 2);
Assert.IsTrue(IC.eq(lst, 7, 4, 5, 2));
}
-#endif
[Test]
[ExpectedException(typeof(IndexOutOfRangeException))]
@@ -850,7 +838,6 @@ namespace nunit.arrays.hashed
Assert.AreEqual(6, lst.Remove());
}
-#if FIXME
[Test]
public void InsertFirstLast()
{
@@ -882,7 +869,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(lst.Check());
Assert.IsTrue(IC.eq(lst, 7, 2, 8, 3, 4, 9, 5));
}
-#endif
[Test]
@@ -896,7 +882,6 @@ namespace nunit.arrays.hashed
lst.InsertBefore(7, 4);
}
-#if FIXME
[Test]
public void InsertAfter()
{
@@ -915,7 +900,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(lst.Check());
Assert.IsTrue(IC.eq(lst, 1, 8, 2, 7, 3, 4, 5, 9));
}
-#endif
[Test]
@@ -929,7 +913,6 @@ namespace nunit.arrays.hashed
lst.InsertAfter(7, 4);
}
-#if FIXME
[Test]
public void InsertAll()
{
@@ -972,7 +955,6 @@ namespace nunit.arrays.hashed
for (int i = 0; i < 4; i++)
Assert.AreEqual("<<" + (i + 1) + ">>", r[i]);
}
-#endif
[Test]
@@ -989,7 +971,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(lst.IsEmpty);
}
-#if FIXME
[Test]
public void Reverse()
{
@@ -1012,7 +993,6 @@ namespace nunit.arrays.hashed
Assert.IsTrue(lst.Check());
Assert.IsTrue(IC.eq(lst, 7, 8, 9, 6, 5, 4, 3, 0, 1, 2));
}
-#endif
[Test]
[ExpectedException(typeof(ArgumentException))]