for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
* @copyright Metaways Infosystems GmbH, 2012
* @copyright Aimeos (aimeos.org), 2015-2017
*/
namespace Aimeos\Controller\Frontend\Catalog;
class StandardTest extends \PHPUnit\Framework\TestCase
{
private $object;
protected function setUp()
$this->object = new \Aimeos\Controller\Frontend\Catalog\Standard( \TestHelperFrontend::getContext() );
}
protected function tearDown()
unset( $this->object );
public function testCreateManager()
$this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->createManager( 'product' ) );