Sfoglia il codice sorgente

phpunit compatibility

El RIDO 4 anni fa
parent
commit
5c61a442a0
1 ha cambiato i file con 2 aggiunte e 8 eliminazioni
  1. 2 8
      tst/ModelTest.php

+ 2 - 8
tst/ModelTest.php

@@ -329,22 +329,16 @@ class ModelTest extends TestCase
         $paste->get();
         $paste->get();
     }
     }
 
 
-    /**
-     * @expectedException Exception
-     * @expectedExceptionCode 75
-     */
     public function testInvalidPasteFormat()
     public function testInvalidPasteFormat()
     {
     {
         $pasteData             = Helper::getPastePost();
         $pasteData             = Helper::getPastePost();
         $pasteData['adata'][1] = 'format does not exist';
         $pasteData['adata'][1] = 'format does not exist';
         $paste                 = $this->_model->getPaste();
         $paste                 = $this->_model->getPaste();
+        $this->expectException(Exception::class);
+        $this->expectExceptionCode(75);
         $paste->setData($pasteData);
         $paste->setData($pasteData);
     }
     }
 
 
-    /**
-     * @expectedException Exception
-     * @expectedExceptionCode 60
-     */
     public function testInvalidPasteId()
     public function testInvalidPasteId()
     {
     {
         $this->expectException(Exception::class);
         $this->expectException(Exception::class);