Aimeos\ShopBundle\Tests\Controller\JqadmControllerTest::testCreateAction PHP Method

testCreateAction() public method

public testCreateAction ( )
    public function testCreateAction()
    {
        $client = static::createClient(array(), array('PHP_AUTH_USER' => 'admin', 'PHP_AUTH_PW' => 'adminpass'));
        $client->request('GET', '/unittest/jqadm/create/product');
        $response = $client->getResponse();
        $this->assertEquals(200, $response->getStatusCode());
        $this->assertContains('<div class="product-item', $response->getContent());
    }