Skip to content

Commit

Permalink
PHPUnit - use expectExpectation in last cases
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Nov 16, 2017
1 parent e7a15f8 commit 74a9d8d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/TestCase/View/ViewTest.php
Expand Up @@ -934,24 +934,26 @@ public function testPrefixElement()
/**
* Test loading non-existent view element
*
* @expectedException \Cake\View\Exception\MissingElementException
* @expectedExceptionMessageRegExp $Element file \"Element[\\|/]non_existent_element\.ctp\" is missing$
* @return void
*/
public function testElementNonExistent()
{
$this->expectException(\Cake\View\Exception\MissingElementException::class);
$this->expectExceptionMessageRegExp('$Element file \"Element[\\|/]non_existent_element\.ctp\" is missing$');

$this->View->element('non_existent_element');
}

/**
* Test loading non-existent plugin view element
*
* @expectedException \Cake\View\Exception\MissingElementException
* @expectedExceptionMessageRegExp $Element file "test_plugin\.Element[\\|/]plugin_element\.ctp\" is missing$
* @return void
*/
public function testElementInexistentPluginElement()
{
$this->expectException(\Cake\View\Exception\MissingElementException::class);
$this->expectExceptionMessageRegExp('$Element file "test_plugin\.Element[\\|/]plugin_element\.ctp\" is missing$');

$this->View->element('test_plugin.plugin_element');
}

Expand Down

0 comments on commit 74a9d8d

Please sign in to comment.