| | 1 | | using NUnit.Framework; |
| | 2 | | using System; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.Linq; |
| | 5 | | using UnityEngine; |
| | 6 | | using UnityEngine.TestTools; |
| | 7 | |
|
| | 8 | | public class PriorityQueueTest { |
| | 9 | | [Test] |
| 0 | 10 | | public void TestIsEmpty() { |
| 0 | 11 | | PriorityQueue<float> queue = new PriorityQueue<float>(); |
| 0 | 12 | | Assert.True(queue.IsEmpty()); |
| 0 | 13 | | queue.Enqueue(item: 1.0f, priority: 1.0f); |
| 0 | 14 | | Assert.False(queue.IsEmpty()); |
| 0 | 15 | | } |
| | 16 | |
|
| | 17 | | [Test] |
| 0 | 18 | | public void TestDequeueWhenEmpty() { |
| 0 | 19 | | PriorityQueue<float> queue = new PriorityQueue<float>(); |
| 0 | 20 | | Assert.Throws<InvalidOperationException>(() => { queue.Dequeue(); }); |
| 0 | 21 | | } |
| | 22 | |
|
| | 23 | | [Test] |
| 0 | 24 | | public void TestPeekWhenEmpty() { |
| 0 | 25 | | PriorityQueue<float> queue = new PriorityQueue<float>(); |
| 0 | 26 | | Assert.Throws<InvalidOperationException>(() => { queue.Peek(); }); |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | [Test] |
| 0 | 30 | | public void TestPeek() { |
| 0 | 31 | | PriorityQueue<string> queue = new PriorityQueue<string>(); |
| 0 | 32 | | queue.Enqueue(item: "a", priority: 3.0f); |
| 0 | 33 | | queue.Enqueue(item: "b", priority: 1.0f); |
| 0 | 34 | | queue.Enqueue(item: "c", priority: 5.0f); |
| 0 | 35 | | queue.Enqueue(item: "d", priority: 3.2f); |
| 0 | 36 | | Assert.AreEqual("b", queue.Peek()); |
| 0 | 37 | | } |
| | 38 | |
|
| | 39 | | [Test] |
| 0 | 40 | | public void TestPriority() { |
| 0 | 41 | | PriorityQueue<string> queue = new PriorityQueue<string>(); |
| 0 | 42 | | queue.Enqueue(item: "a", priority: 3.0f); |
| 0 | 43 | | queue.Enqueue(item: "b", priority: 1.0f); |
| 0 | 44 | | queue.Enqueue(item: "c", priority: 5.0f); |
| 0 | 45 | | queue.Enqueue(item: "d", priority: 3.2f); |
| | 46 | |
|
| 0 | 47 | | List<string> expectedOrder = new List<string> { "b", "a", "d", "c" }; |
| 0 | 48 | | int index = 0; |
| 0 | 49 | | while (!queue.IsEmpty()) { |
| 0 | 50 | | Assert.AreEqual(expectedOrder[index], queue.Dequeue()); |
| 0 | 51 | | ++index; |
| 0 | 52 | | } |
| 0 | 53 | | } |
| | 54 | |
|
| | 55 | | [Test] |
| 0 | 56 | | public void TestEnumerator() { |
| 0 | 57 | | PriorityQueue<string> queue = new PriorityQueue<string>(); |
| 0 | 58 | | queue.Enqueue(item: "a", priority: 3.0f); |
| 0 | 59 | | queue.Enqueue(item: "b", priority: 1.0f); |
| 0 | 60 | | queue.Enqueue(item: "c", priority: 5.0f); |
| 0 | 61 | | queue.Enqueue(item: "d", priority: 3.2f); |
| | 62 | |
|
| 0 | 63 | | List<string> expectedOrder = new List<string> { "b", "a", "d", "c" }; |
| 0 | 64 | | IEnumerator<string> enumerator = queue.GetEnumerator(); |
| 0 | 65 | | int index = 0; |
| 0 | 66 | | while (enumerator.MoveNext()) { |
| 0 | 67 | | Assert.AreEqual(expectedOrder[index], enumerator.Current); |
| 0 | 68 | | ++index; |
| 0 | 69 | | } |
| 0 | 70 | | } |
| | 71 | |
|
| | 72 | | [Test] |
| 0 | 73 | | public void TestIterator() { |
| 0 | 74 | | PriorityQueue<string> queue = new PriorityQueue<string>(); |
| 0 | 75 | | queue.Enqueue(item: "a", priority: 3.0f); |
| 0 | 76 | | queue.Enqueue(item: "b", priority: 1.0f); |
| 0 | 77 | | queue.Enqueue(item: "c", priority: 5.0f); |
| 0 | 78 | | queue.Enqueue(item: "d", priority: 3.2f); |
| | 79 | |
|
| 0 | 80 | | List<string> expectedOrder = new List<string> { "b", "a", "d", "c" }; |
| 0 | 81 | | int index = 0; |
| 0 | 82 | | foreach (var item in queue) { |
| 0 | 83 | | Assert.AreEqual(expectedOrder[index], item); |
| 0 | 84 | | ++index; |
| 0 | 85 | | } |
| 0 | 86 | | } |
| | 87 | | } |