Exemple #1
0
 /**
  *
  * @group ZF-3068
  */
 public function testDbTableAdapterUsesCaseFolding()
 {
     $this->tearDown();
     $this->_setupDbAdapter(array(Zend_Db::CASE_FOLDING => Zend_Db::CASE_UPPER));
     $this->_setupAuthAdapter();
     $this->_adapter->setIdentity('my_username');
     $this->_adapter->setCredential('my_password');
     $this->_db->foldCase(Zend_Db::CASE_UPPER);
     $this->_adapter->authenticate();
 }