コード例 #1
0
ファイル: BootstrapTest.php プロジェクト: aiesh/magento2
 public function testGetDbVendorName()
 {
     $this->assertEquals('mysql', $this->_object->getDbVendorName());
 }
コード例 #2
0
ファイル: BootstrapTest.php プロジェクト: nemphys/magento2
 /**
  * @dataProvider getDbVendorNameDataProvider
  */
 public function testGetDbVendorName($localXmlFile, $expectedDbVendorName)
 {
     $this->_callBootstrapConstructor($localXmlFile);
     $this->assertEquals($expectedDbVendorName, $this->_bootstrap->getDbVendorName());
 }