Ejemplo n.º 1
0
 public function testGetDbVendorName()
 {
     $this->assertEquals('mysql', $this->_object->getDbVendorName());
 }
Ejemplo n.º 2
0
 /**
  * @dataProvider getDbVendorNameDataProvider
  */
 public function testGetDbVendorName($localXmlFile, $expectedDbVendorName)
 {
     $this->_callBootstrapConstructor($localXmlFile);
     $this->assertEquals($expectedDbVendorName, $this->_bootstrap->getDbVendorName());
 }