2007-05-11 21:15:35 +00:00
|
|
|
#region CPL License
|
|
|
|
/*
|
|
|
|
Nuclex Framework
|
|
|
|
Copyright (C) 2002-2007 Nuclex Development Labs
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This 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
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
License along with this library
|
|
|
|
*/
|
|
|
|
#endregion
|
2007-07-24 20:15:19 +00:00
|
|
|
|
2007-03-05 18:22:31 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
#if UNITTEST
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Collections {
|
|
|
|
|
|
|
|
/// <summary>Unit Test for the priority queue class</summary>
|
|
|
|
[TestFixture]
|
2007-09-05 18:20:10 +00:00
|
|
|
public class PairPriorityQueueTest {
|
2007-03-05 18:22:31 +00:00
|
|
|
|
|
|
|
/// <summary>Tests to ensure the count property is properly updated</summary>
|
|
|
|
[Test]
|
|
|
|
public void TestCount() {
|
2007-09-05 18:20:10 +00:00
|
|
|
PairPriorityQueue<float, string> testQueue =
|
|
|
|
new PairPriorityQueue<float, string>();
|
2007-03-05 18:22:31 +00:00
|
|
|
|
|
|
|
Assert.AreEqual(0, testQueue.Count);
|
2007-09-05 18:20:10 +00:00
|
|
|
testQueue.Enqueue(12.34f, "a");
|
2007-03-05 18:22:31 +00:00
|
|
|
Assert.AreEqual(1, testQueue.Count);
|
2007-09-05 18:20:10 +00:00
|
|
|
testQueue.Enqueue(56.78f, "b");
|
2007-03-05 18:22:31 +00:00
|
|
|
Assert.AreEqual(2, testQueue.Count);
|
|
|
|
testQueue.Dequeue();
|
|
|
|
Assert.AreEqual(1, testQueue.Count);
|
2007-09-05 18:20:10 +00:00
|
|
|
testQueue.Enqueue(9.0f, "c");
|
2007-03-05 18:22:31 +00:00
|
|
|
Assert.AreEqual(2, testQueue.Count);
|
|
|
|
testQueue.Clear();
|
|
|
|
Assert.AreEqual(0, testQueue.Count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Tests to ensure that the priority collection actually sorts items</summary>
|
|
|
|
[Test]
|
|
|
|
public void TestOrdering() {
|
2007-09-05 18:20:10 +00:00
|
|
|
PairPriorityQueue<float, string> testQueue =
|
|
|
|
new PairPriorityQueue<float, string>();
|
|
|
|
|
|
|
|
testQueue.Enqueue(1.0f, "a");
|
|
|
|
testQueue.Enqueue(9.0f, "i");
|
|
|
|
testQueue.Enqueue(2.0f, "b");
|
|
|
|
testQueue.Enqueue(8.0f, "h");
|
|
|
|
testQueue.Enqueue(3.0f, "c");
|
|
|
|
testQueue.Enqueue(7.0f, "g");
|
|
|
|
testQueue.Enqueue(4.0f, "d");
|
|
|
|
testQueue.Enqueue(6.0f, "f");
|
|
|
|
testQueue.Enqueue(5.0f, "e");
|
|
|
|
|
|
|
|
Assert.AreEqual("i", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("h", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("g", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("f", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("e", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("d", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("c", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("b", testQueue.Dequeue().Item);
|
|
|
|
Assert.AreEqual("a", testQueue.Dequeue().Item);
|
2007-03-05 18:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Collections
|
|
|
|
|
|
|
|
#endif // UNITTEST
|