You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
697 B
PHTML
26 lines
697 B
PHTML
6 years ago
|
<?php
|
||
|
|
||
|
namespace Engelsystem\Test\Unit\Controllers;
|
||
|
|
||
|
use Engelsystem\Controllers\ApiController;
|
||
|
use Engelsystem\Http\Response;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class ApiControllerTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers \Engelsystem\Controllers\ApiController::__construct
|
||
|
* @covers \Engelsystem\Controllers\ApiController::index
|
||
|
*/
|
||
|
public function testIndex()
|
||
|
{
|
||
|
$controller = new ApiController(new Response());
|
||
|
|
||
|
$response = $controller->index();
|
||
|
|
||
|
$this->assertEquals(501, $response->getStatusCode());
|
||
|
$this->assertEquals(['application/json'], $response->getHeader('content-type'));
|
||
|
$this->assertJson($response->getContent());
|
||
|
}
|
||
|
}
|