Eccube\Tests\Repository\OrderRepositoryGetQueryBuilderBySearchDataAdminTest::testPaymentTotalStart PHP Method

testPaymentTotalStart() public method

    public function testPaymentTotalStart()
    {
        $this->Order->setPaymentTotal(99);
        $this->Order1->setPaymentTotal(100);
        $this->Order2->setPaymentTotal(101);
        $this->app['orm.em']->flush();
        // XXX 0 が無視されてしまう
        $this->searchData = array('payment_total_start' => 100);
        $this->scenario();
        $this->expected = 2;
        $this->actual = count($this->Results);
        $this->verify();
    }