コード例 #1
0
ファイル: GalleryTest.php プロジェクト: Doability/magento2dev
 /**
  * Test getVideoSettingsJson
  */
 public function testGetVideoSettingsJson()
 {
     $this->mediaHelperMock->expects($this->once())->method('getPlayIfBaseAttribute')->willReturn(1);
     $this->mediaHelperMock->expects($this->once())->method('getShowRelatedAttribute')->willReturn(0);
     $this->mediaHelperMock->expects($this->once())->method('getVideoAutoRestartAttribute')->willReturn(0);
     $this->gallery->getVideoSettingsJson();
 }