Eccube\Tests\Repository\OrderRepositoryGetQueryBuilderBySearchDataTest::testPaymentTotalEnd PHP Method

testPaymentTotalEnd() public method

public testPaymentTotalEnd ( )
    public function testPaymentTotalEnd()
    {
        $this->Order->setPaymentTotal(99);
        $this->Order1->setPaymentTotal(100);
        $this->Order2->setPaymentTotal(101);
        $this->app['orm.em']->flush();
        $this->searchData = array('payment_total_end' => 100);
        $this->scenario();
        $this->expected = 2;
        $this->actual = count($this->Results);
        $this->verify();
    }