Eccube\Tests\Repository\CustomerRepositoryGetQueryBuilderBySearchDataTest::testTel PHP Method

testTel() public method

public testTel ( )
    public function testTel()
    {
        $this->Customer->setTel01('090')->setTel02('999')->setTel03('000');
        $this->Customer1->setTel01('090')->setTel02('111')->setTel03('000');
        $this->Customer2->setTel01('090')->setTel02('222')->setTel03('000');
        $this->Customer3->setTel01('090')->setTel02('333')->setTel03('000');
        $this->app['orm.em']->flush();
        $this->searchData = array('tel' => '999');
        $this->scenario();
        $this->expected = 1;
        $this->actual = count($this->Results);
        $this->verify();
    }