Aimeos\ShopBundle\Tests\Controller\CatalogControllerTest::testStock PHP Method

testStock() public method

public testStock ( )
    public function testStock()
    {
        $client = static::createClient();
        $client->request('GET', '/unittest/de/EUR/stock');
        $content = $client->getResponse()->getContent();
        $this->assertContains('.aimeos .product .stock', $content);
        $this->assertContains('.aimeos .catalog-detail-basket', $content);
    }