for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class PageControllerTest extends AimeosTestAbstract
{
public function testIndexAction()
View::addLocation( dirname( __DIR__ ) . '/fixtures/views' );
$response = $this->action( 'GET', '\Aimeos\Shop\Controller\PageController@indexAction', ['site' => 'unittest', 'path' => 'contact'] );
$this->assertEquals( 200, $response->getStatusCode() );
}