public void CircularQueueGetSize() { int maxSize = 100; var myQueue = new MyCircularQueue(maxSize); Assert.AreEqual(100, myQueue.GetSize()); }