mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 09:19:08 +00:00 
			
		
		
		
	Rised CodeCoverage of AbstractAction to 100%
This commit is contained in:
		| @@ -0,0 +1,57 @@ | ||||
| <?php | ||||
|  | ||||
| namespace tests\Unit\Domain\ActionManagement\Read; | ||||
|  | ||||
| use PHPUnit\Framework\TestCase; | ||||
| use App\Domain\ActionManagement\ActionInterface; | ||||
| use App\Domain\ActionManagement\AbstractAction; | ||||
| use App\Domain\ActionManagement\ActionServiceInterface; | ||||
| use PHPUnit\Framework\MockObject\MockObject; | ||||
| use App\Exception\NotValidByFormException; | ||||
|  | ||||
| /** | ||||
|  * @author kevinfrantz | ||||
|  */ | ||||
| class AbstractActionTest extends TestCase | ||||
| { | ||||
|     /** | ||||
|      * @var ActionInterface | ||||
|      */ | ||||
|     private $action; | ||||
|  | ||||
|     /** | ||||
|      * @var ActionServiceInterface|MockObject | ||||
|      */ | ||||
|     private $actionService; | ||||
|  | ||||
|     public function setUp(): void | ||||
|     { | ||||
|         $this->actionService = $this->createMock(ActionServiceInterface::class); | ||||
|         $this->action = new class($this->actionService) extends AbstractAction { | ||||
|             public $isSecure; | ||||
|             public $validByForm; | ||||
|  | ||||
|             protected function isSecure(): bool | ||||
|             { | ||||
|                 return $this->isSecure; | ||||
|             } | ||||
|  | ||||
|             protected function isValidByForm(): bool | ||||
|             { | ||||
|                 return $this->validByForm; | ||||
|             } | ||||
|  | ||||
|             protected function proccess() | ||||
|             { | ||||
|             } | ||||
|         }; | ||||
|     } | ||||
|  | ||||
|     public function testNotValidByFormException(): void | ||||
|     { | ||||
|         $this->action->isSecure = true; | ||||
|         $this->action->validByForm = false; | ||||
|         $this->expectException(NotValidByFormException::class); | ||||
|         $this->action->execute(); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user