Eccube\Tests\Plugin\Web\Admin\Content\BlockControllerTest::test_routing_AdminContentBlock_edit PHP Method

test_routing_AdminContentBlock_edit() public method

    public function test_routing_AdminContentBlock_edit()
    {
        $this->client->request('GET', $this->app->url('admin_content_block_edit', array('id' => 1)));
        $this->assertTrue($this->client->getResponse()->isSuccessful());
        $hookpoins = array(EccubeEvents::ADMIN_CONTENT_BLOCK_EDIT_INITIALIZE);
        $this->verifyOutputString($hookpoins);
    }