示例#1
0
 public function testIsStatusBuy()
 {
     $this->assertTrue($this->queueItem->isStatusBuy());
     $this->queueItem->setStatus(QueueItem::STATUS_SELL);
     $this->assertFalse($this->queueItem->isStatusBuy());
 }