for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jalle19\StatusManager\Test\Message\Response;
use Jalle19\StatusManager\Message\Response\AuthenticationResponse;
/**
* Class AuthenticationResponseTest
* @package Jalle19\StatusManager\Test\Message\Response
* @copyright Copyright © Sam Stenvall 2016-
* @license https://www.gnu.org/licenses/gpl.html The GNU General Public License v2.0
*/
class AuthenticationResponseTest extends \PHPUnit_Framework_TestCase
{
* Not much to test here really
public function testAuthenticationResponse()
$response = new AuthenticationResponse(AuthenticationResponse::STATUS_SUCCESS);
$this->assertEquals(AuthenticationResponse::STATUS_SUCCESS, $response->getStatus());
}