Eccube\Tests\Repository\OrderRepositoryGetQueryBuilderBySearchDataAdminTest::testPaymentDateStart PHP Метод

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

    public function testPaymentDateStart()
    {
        $Status = $this->app['eccube.repository.order_status']->find(6);
        $this->app['eccube.repository.order']->changeStatus($this->Order2->getId(), $Status);
        $this->searchData = array('payment_date_start' => new \DateTime('- 1 days'));
        $this->scenario();
        $this->expected = 1;
        $this->actual = count($this->Results);
        $this->verify();
    }