Merge pull request 'Hotfix Code Coverage' (#41) from development into master
All checks were successful
Build and Test (KnockOutWhist) TeamCity build finished

Reviewed-on: #41
This commit is contained in:
2024-11-29 12:31:41 +01:00

View File

@@ -69,5 +69,15 @@ class QueueTests extends AnyWordSpec with Matchers {
iterator.next() should be(5)
iterator.hasNext should be(false)
}
"iterate with second iterator over the queue" in {
val queue = new CustomPlayerQueue[Int](Array(1, 2, 3, 4, 5))
val iterator = queue.fromFirstIterator
iterator.next() should be(1)
iterator.next() should be(2)
iterator.next() should be(3)
iterator.next() should be(4)
iterator.next() should be(5)
iterator.hasNext should be(false)
}
}
}