Пример #1
0
 public void Display_Method_Should_Throw_QueueException_When_Queue_Is_Empty()
 {
     try
     {
         StacksQueuesProblem.Queue testingObj = new StacksQueuesProblem.Queue();
         testingObj.Display();
     }
     catch (Exception e)
     {
         Assert.AreEqual(e.Message, "No Value in Queue");
     }
 }