mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-13 04:26:57 +00:00
Tidying
This commit is contained in:
parent
4f901db30e
commit
74ed7b4165
8 changed files with 27 additions and 28 deletions
|
|
@ -1,6 +1,6 @@
|
|||
using NUnit.Framework;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using ICD.Common.Utils.Extensions;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace ICD.Common.Utils.Tests.Extensions
|
||||
{
|
||||
|
|
@ -12,7 +12,7 @@ namespace ICD.Common.Utils.Tests.Extensions
|
|||
{
|
||||
Queue<int> queue = new Queue<int>();
|
||||
|
||||
queue.EnqueueRange(new int[] { 1, 2, 3 });
|
||||
queue.EnqueueRange(new[] { 1, 2, 3 });
|
||||
|
||||
Assert.AreEqual(3, queue.Count);
|
||||
Assert.AreEqual(1, queue.Dequeue());
|
||||
|
|
@ -24,7 +24,7 @@ namespace ICD.Common.Utils.Tests.Extensions
|
|||
public void DequeueTest()
|
||||
{
|
||||
Queue<int> queue = new Queue<int>();
|
||||
queue.EnqueueRange(new int[] { 1, 2, 3 });
|
||||
queue.EnqueueRange(new[] { 1, 2, 3 });
|
||||
|
||||
int output;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue