D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
eclinic.dentostock.com
/
tests
/
Filename :
ApiTestTrait.php
back
Copy
<?php namespace Tests; trait ApiTestTrait { private $response; public function assertApiResponse(array $actualData) { $this->assertApiSuccess(); $response = json_decode($this->response->getContent(), true); $responseData = $response['data']; $this->assertNotEmpty($responseData['id']); $this->assertModelData($actualData, $responseData); } public function assertApiSuccess() { $this->response->assertStatus(200); $this->response->assertJson(['success' => true]); } public function assertModelData(array $actualData, array $expectedData) { foreach ($actualData as $key => $value) { if (in_array($key, ['created_at', 'updated_at'])) { continue; } $this->assertEquals($actualData[$key], $expectedData[$key]); } } }