BaseTest::setUp PHP Méthode

setUp() public méthode

public setUp ( )
    function setUp()
    {
        self::$db->setQueryCallback(array($this, 'onQuery'));
        $this->queries = array();
        $this->params = array();
    }

Usage Example

 public function setUp()
 {
     parent::setUp();
     $this->pwd = dirname(__FILE__);
     $this->image_location = $this->pwd . "/resources/pitbull.jpg";
     $this->rs = $this->jc->repositoryService();
 }
All Usage Examples Of BaseTest::setUp