Exemplo n.º 1
0
 public function testCanNotPeekAnEmptyQueue()
 {
     $queue = new CQueue();
     $this->setExpectedException('CException');
     $item = $queue->peek();
 }