Exemple #1
0
 /**
  * @expectedException \Oro\Component\Layout\Exception\InvalidArgumentException
  * @expectedExceptionMessage Invalid "themes" argument type. Expected "string or array of strings", "integer" given.
  */
 public function testSetBlockThemeWithInvalidThemeType()
 {
     $this->rawLayout->add('root', null, 'root');
     $this->rawLayout->setBlockTheme('root', 123);
 }