Eccube\Tests\Plugin\Web\Admin\Product\ProductControllerTest::testRoutingAdminProductProductNew PHP Method

testRoutingAdminProductProductNew() public method

    public function testRoutingAdminProductProductNew()
    {
        $this->client->request('GET', $this->app->url('admin_product_product_new'));
        $this->assertTrue($this->client->getResponse()->isSuccessful());
        $expected = array(EccubeEvents::ADMIN_PRODUCT_EDIT_INITIALIZE, EccubeEvents::ADMIN_PRODUCT_EDIT_SEARCH);
        $this->verifyOutputString($expected);
    }