Esempio n. 1
0
 /**
  * verify that we always get an array, even if empty, when getting
  * data from the underlying implementation
  */
 public function testGetVerboseOutputReturnArray()
 {
     $remote = new Remote($this->getRepository());
     $actual = $remote->getVerboseOutput();
     $this->assertTrue(is_array($actual), 'getVerboseOutput() returns array');
 }