예제 #1
0
 /**
  * @param bool $booleanData
  * @dataProvider booleanDataProvider
  * @return void
  */
 public function testIsMergeJsFiles($booleanData)
 {
     $this->scopeConfigMock->expects($this->once())->method('isSetFlag')->with(Config::XML_PATH_MERGE_JS_FILES, ScopeInterface::SCOPE_STORE)->willReturn($booleanData);
     $this->assertSame($booleanData, $this->model->isMergeJsFiles());
 }