AccountControllerTest::testActions PHP Метод

testActions() публичный Метод

public testActions ( )
    public function testActions()
    {
        $response = $this->action('GET', '\\Aimeos\\Shop\\Controller\\AccountController@indexAction', ['site' => 'unittest']);
        $this->assertResponseOk();
        $this->assertContains('<section class="aimeos account-profile">', $response->getContent());
        $this->assertContains('<section class="aimeos account-history">', $response->getContent());
        $this->assertContains('<section class="aimeos account-favorite">', $response->getContent());
        $this->assertContains('<section class="aimeos account-watch">', $response->getContent());
    }