예제 #1
0
파일: CQueueTest.php 프로젝트: avtograd/yii
 public function testCanNotPeekAnEmptyQueue()
 {
     $queue = new CQueue();
     $this->setExpectedException('CException');
     $item = $queue->peek();
 }