コード例 #1
0
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Requested path 'short/path.js' is wrong
  */
 public function testLaunchWrongPath()
 {
     $this->state->expects($this->once())->method('getMode')->will($this->returnValue(\Magento\Framework\App\State::MODE_DEVELOPER));
     $this->request->expects($this->once())->method('get')->with('resource')->will($this->returnValue('short/path.js'));
     $this->object->launch();
 }