コード例 #1
0
ファイル: ServerTest.php プロジェクト: fproject/phpamf
 public function testProductionFlagShouldBeMutable()
 {
     $this->testIsProductionByDefault();
     $this->_server->setProduction(false);
     $this->assertFalse($this->_server->isProduction());
     $this->_server->setProduction(true);
     $this->assertTrue($this->_server->isProduction());
 }