for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class AimeosTest extends AimeosTestAbstract
{
public function testGet()
$object = $this->app->make('\Aimeos\Shop\Base\Aimeos')->get();
$this->assertInstanceOf( '\Aimeos\Bootstrap', $object );
}
public function testGetVersion()
$object = $this->app->make('\Aimeos\Shop\Base\Aimeos');
$this->assertInternalType( 'string', $object->getVersion() );