コード例 #1
0
ファイル: LotTest.php プロジェクト: junjinZ/wealthbot
 public function testIsClosed()
 {
     $this->assertFalse($this->lot->isClosed());
     $this->lot->setStatus(Lot::LOT_CLOSED);
     $this->assertTrue($this->lot->isClosed());
 }