コード例 #1
0
ファイル: ContentTest.php プロジェクト: suga/Megiddo
 public function testGetObjCultureWithObject()
 {
     $objCulture = new Culture();
     $objCulture->setCulture('pt_BR');
     $this->objContent->setCulture($objCulture);
     $test = $this->objContent->getObjCulture()->getCulture();
     $this->assertEquals('pt_BR', $test);
 }