Browse Source

PHPUnit - use expectExpectation in last cases

Dariusz Ruminski 8 years ago
parent
commit
74a9d8da93
1 changed files with 6 additions and 4 deletions
  1. 6 4
      tests/TestCase/View/ViewTest.php

+ 6 - 4
tests/TestCase/View/ViewTest.php

@@ -934,24 +934,26 @@ class ViewTest extends TestCase
     /**
      * 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');
     }