Example #1
0
 /**
  * Initialises Adapter
  */
 protected function setUp()
 {
     parent::setUp();
     /** initialise call */
     $this->adapter = 'Local';
     $this->action = 'Move';
     return;
 }
Example #2
0
 /**
  * Setup testing
  *
  * @return  $this
  * @since   1.0
  */
 protected function setUp()
 {
     parent::setUp();
     $this->adapter = 'Local';
     $this->options = array();
     $this->adapter = new Connection();
     return $this;
 }
Example #3
0
 /**
  * Setup testing
  *
  * @return  $this
  * @since   1.0
  */
 protected function setUp()
 {
     parent::setUp();
     $this->adapter = new Local($this->options);
     $this->options = array();
     $this->adapter = new Adapter($this->adapter);
     return $this;
 }
Example #4
0
 /**
  * Setup testing
  *
  * @return  $this
  * @since   1.0
  */
 protected function setUp()
 {
     $base = substr(__DIR__, 0, strlen(__DIR__) - 5);
     parent::setUp();
     $this->adapter = 'Local';
     $this->path = $base . '/.dev/Tests/Data/test1.txt';
     $this->adapter = new Connection();
     return $this;
 }
Example #5
0
 /**
  * Initialises Adapter
  */
 protected function setUp()
 {
     parent::setUp();
     /** initialise call */
     $this->adapter = 'Local';
     $this->action = 'Delete';
     $this->options = array('delete_empty' => false);
     return;
 }
 /**
  * Initialises Adapter
  */
 protected function setUp()
 {
     parent::setUp();
     $this->adapter = 'Local';
     $this->options = array();
 }
Example #7
0
 /**
  * Setup testing
  *
  * @return  $this
  * @since   1.0
  */
 protected function setUp()
 {
     parent::setUp();
     $this->adapter = 'Local';
     $this->adapter = new Connection();
 }