Skip to content

Commit

Permalink
Use common parent class.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Dec 18, 2013
1 parent bf34a33 commit ebbe962
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 142 deletions.
51 changes: 1 addition & 50 deletions framework/Db/test/Horde/Db/Adapter/Mysql/TableDefinition.php
Expand Up @@ -22,55 +22,6 @@
* @package Db
* @subpackage UnitTests
*/
class Horde_Db_Adapter_Mysql_TableDefinition
class Horde_Db_Adapter_Mysql_TableDefinition extends Horde_Db_Adapter_TableDefinition
{
public $conn;

/*##########################################################################
# Public methods
##########################################################################*/

public function testConstruct()
{
}

public function testName()
{
}

public function testGetOptions()
{
}

public function testPrimaryKey()
{
}

public function testColumn()
{
}

public function testToSql()
{
}

/*##########################################################################
# Array Access
##########################################################################*/

public function testOffsetExists()
{
}

public function testOffsetGet()
{
}

public function testOffsetSet()
{
}

public function testOffsetUnset()
{
}
}
Expand Up @@ -22,53 +22,6 @@
* @package Db
* @subpackage UnitTests
*/
class Horde_Db_Adapter_Postgresql_TableDefinition
class Horde_Db_Adapter_Postgresql_TableDefinition extends Horde_Db_Adapter_TableDefinition
{
/*##########################################################################
# Public methods
##########################################################################*/

public function testConstruct()
{
}

public function testName()
{
}

public function testGetOptions()
{
}

public function testPrimaryKey()
{
}

public function testColumn()
{
}

public function testToSql()
{
}

/*##########################################################################
# Array Access
##########################################################################*/

public function testOffsetExists()
{
}

public function testOffsetGet()
{
}

public function testOffsetSet()
{
}

public function testOffsetUnset()
{
}
}
45 changes: 1 addition & 44 deletions framework/Db/test/Horde/Db/Adapter/Sqlite/TableDefinition.php
Expand Up @@ -22,49 +22,6 @@
* @package Db
* @subpackage UnitTests
*/
class Horde_Db_Adapter_Sqlite_TableDefinition
class Horde_Db_Adapter_Sqlite_TableDefinition extends Horde_Db_Adapter_TableDefinition
{
public function testConstruct()
{
}

public function testName()
{
}

public function testGetOptions()
{
}

public function testPrimaryKey()
{
}

public function testColumn()
{
}

public function testToSql()
{
}

/*##########################################################################
# Array Access
##########################################################################*/

public function testOffsetExists()
{
}

public function testOffsetGet()
{
}

public function testOffsetSet()
{
}

public function testOffsetUnset()
{
}
}
70 changes: 70 additions & 0 deletions framework/Db/test/Horde/Db/Adapter/TableDefinition.php
@@ -0,0 +1,70 @@
<?php
/**
* Copyright 2007 Maintainable Software, LLC
* Copyright 2008-2013 Horde LLC (http://www.horde.org/)
*
* @author Mike Naberezny <mike@maintainable.com>
* @author Derek DeVries <derek@maintainable.com>
* @author Chuck Hagenbuch <chuck@horde.org>
* @license http://www.horde.org/licenses/bsd
* @category Horde
* @package Db
* @subpackage UnitTests
*/

/**
* @author Mike Naberezny <mike@maintainable.com>
* @author Derek DeVries <derek@maintainable.com>
* @author Chuck Hagenbuch <chuck@horde.org>
* @license http://www.horde.org/licenses/bsd
* @group horde_db
* @category Horde
* @package Db
* @subpackage UnitTests
*/
class Horde_Db_Adapter_TableDefinition
{
public function testConstruct()
{
}

public function testName()
{
}

public function testGetOptions()
{
}

public function testPrimaryKey()
{
}

public function testColumn()
{
}

public function testToSql()
{
}

/*##########################################################################
# Array Access
##########################################################################*/

public function testOffsetExists()
{
}

public function testOffsetGet()
{
}

public function testOffsetSet()
{
}

public function testOffsetUnset()
{
}
}

0 comments on commit ebbe962

Please sign in to comment.