浏览代码

[TESTS]
- general test cleanup of test name in Zend_Db_Adatper tests


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17180 44c647ce-9c0f-0410-b52a-842ac1e357ba

ralph 16 年之前
父节点
当前提交
f64a95f54f
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      tests/Zend/Db/Adapter/MysqliTest.php

+ 3 - 1
tests/Zend/Db/Adapter/MysqliTest.php

@@ -243,10 +243,11 @@ class Zend_Db_Adapter_MysqliTest extends Zend_Db_Adapter_TestCommon
      * Ensures that the PDO Buffered Query does not throw the error
      * 2014 General error
      *
+     * @group  ZF-2101
      * @link   http://framework.zend.com/issues/browse/ZF-2101
      * @return void
      */
-    public function testZF2101()
+    public function testAdapterToEnsurePdoBufferedQueryThrowsNoError()
     {
         $params = $this->_util->getParams();
         $db = Zend_Db::factory($this->getDriver(), $params);
@@ -282,6 +283,7 @@ class Zend_Db_Adapter_MysqliTest extends Zend_Db_Adapter_TestCommon
         $params['driver_options'] = array(
             'mysqli_init_command' => 'SET AUTOCOMMIT=0;'
         );
+
         $db = Zend_Db::factory($this->getDriver(), $params);
 
         $sql = 'SELECT @@AUTOCOMMIT as autocommit';