コード例 #1
0
 /**
  * @param bool $booleanData
  * @dataProvider booleanDataProvider
  * @return void
  */
 public function testIsMergeCssFiles($booleanData)
 {
     $this->scopeConfigMock->expects($this->once())->method('isSetFlag')->with(Config::XML_PATH_MERGE_CSS_FILES, ScopeInterface::SCOPE_STORE)->willReturn($booleanData);
     $this->assertSame($booleanData, $this->model->isMergeCssFiles());
 }