Eccube\Tests\Web\Mypage\MypageControllerTest::testRoutingOrder PHP Method

testRoutingOrder() public method

public testRoutingOrder ( )
    public function testRoutingOrder()
    {
        $this->logIn();
        $client = $this->client;
        $Order = $this->createOrder($this->app->user());
        $client->request('PUT', $this->app->url('mypage_order', array('id' => $Order->getId())));
        $this->assertTrue($client->getResponse()->isRedirection());
    }