예제 #1
0
파일: QueueTest.php 프로젝트: anorgan/qutee
 /**
  * @covers \Qutee\Queue::get
  * @expectedException \Qutee\Exception
  */
 public function testGettingQueueWithoutPreviouslyCreatingItThrowsException()
 {
     Queue::setInstance(null);
     Queue::get();
 }