/**
  * Our results must come in an array format.
  *
  */
 function testRetrieveSQLSchemaReturnsAnTrueOnSuccess()
 {
     $this->_dynamicDBStub->expects($this->once())->method('retrieveSQLSchema')->will($this->returnValue(true));
     $this->assertEquals(true, $this->_dynamicDBStub->retrieveSQLSchema());
 }