for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the silex-annotation-provider package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
* @copyright (c) 2018, Dana Desrosiers <[email protected]>
*/
namespace DDesrosiers\Test\SilexAnnotations\Annotations;
use DDesrosiers\Test\SilexAnnotations\AnnotationTestBase;
class AfterTest extends AnnotationTestBase
{
public function testAfter()
$this->assertEndPointStatus(self::GET_METHOD, '/test/after', self::STATUS_ERROR);
}
public function testAfterOnCollection()
$this->assertEndPointStatus(self::GET_METHOD, '/after/test', self::STATUS_ERROR);