public void TestCreatequeue() { // ARRANGE QueueLab.queue myQueue = new QueueLab.queue(1); bool actual; // ACT actual = myQueue.isEmpty(); // ASSERT Assert.True(actual); }
public void TestIsEmptyFalse() { // ARRANGE QueueLab.queue myQueue = new QueueLab.queue(1); String item = "C# is Fun!"; bool actual; // ACT myQueue.enqueue(item); actual = myQueue.isEmpty(); // ASSERT Assert.False(actual); }