1
0
mirror of synced 2025-03-21 07:23:55 +03:00

[2.0] DDC-302 - Fix failures occuring from Sqlite Tests in this regard - No test coverage for this features now.

This commit is contained in:
beberlei 2010-02-06 23:31:47 +00:00
parent 32eb644c62
commit 0b058c0609

View File

@ -98,36 +98,4 @@ class SqliteSchemaManagerTest extends SchemaManagerFunctionalTestCase
{
$this->_sm->renameTable('oldname', 'newname');
}
/**
* @expectedException \Exception
*/
public function testAddTableColumn()
{
return $this->_sm->addTableColumn('table', 'column', array());
}
/**
* @expectedException \Exception
*/
public function testRemoveTableColumn()
{
$this->_sm->removeTableColumn('table', 'column');
}
/**
* @expectedException \Exception
*/
public function testChangeTableColumn()
{
$this->_sm->changeTableColumn('name', 'type', null, array());
}
/**
* @expectedException \Exception
*/
public function testRenameTableColumn()
{
$this->_sm->renameTableColumn('table', 'old', 'new', array());
}
}