Data Exchange - Finalized deletion, changed the definition of attributes (update/reconcile), added an automated test

SVN:trunk[1083]
This commit is contained in:
Romain Quetiez
2011-02-11 09:01:16 +00:00
parent 1da6a264d0
commit d92f89fbe6
5 changed files with 717 additions and 84 deletions

View File

@@ -190,30 +190,6 @@ abstract class TestHandler
$this->m_sOutput = ob_get_clean();
return (count($this->GetErrors()) == 0);
}
}
/**
* Test to execute a piece of code (checks if an error occurs)
*
* @package iTopORM
*/
abstract class TestFunction extends TestHandler
{
// simply overload DoExecute (temporary)
}
/**
* Test to execute a piece of code (checks if an error occurs)
*
* @package iTopORM
*/
abstract class TestWebServices extends TestHandler
{
// simply overload DoExecute (temporary)
static protected function DoPostRequestAuth($sRelativeUrl, $aData, $sLogin = 'admin', $sPassword = 'admin', $sOptionnalHeaders = null)
{
@@ -272,6 +248,29 @@ abstract class TestWebServices extends TestHandler
}
}
/**
* Test to execute a piece of code (checks if an error occurs)
*
* @package iTopORM
*/
abstract class TestFunction extends TestHandler
{
// simply overload DoExecute (temporary)
}
/**
* Test to execute a piece of code (checks if an error occurs)
*
* @package iTopORM
*/
abstract class TestWebServices extends TestHandler
{
}
/**
* Test to execute a piece of code (checks if an error occurs)
*