コード例 #1
0
ファイル: ClockTest.php プロジェクト: edubacco/OpenSkedge
 /**
  * Run tests to ensure the output is correct for set/getStatus
  *
  * @return void
  */
 public function testStatus()
 {
     $clock = new Clock();
     $clock->setStatus(true);
     $this->assertTrue($clock->getStatus());
 }