Commit 0b058c06 authored by beberlei's avatar beberlei

[2.0] DDC-302 - Fix failures occuring from Sqlite Tests in this regard - No...

[2.0] DDC-302 - Fix failures occuring from Sqlite Tests in this regard - No test coverage for this features now.
parent 32eb644c
......@@ -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());
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment