mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-08 00:52:01 +01:00
Test
This commit is contained in:
@@ -97,13 +97,14 @@ class ModulesTest extends CommonClassTest // TestCase //CommonClassTest
|
||||
|
||||
if ($modlabel == 'User') {
|
||||
print __METHOD__." test table llx_user exists after Webhook init\n";
|
||||
$infotable = $db->DDLInfoTable("llx_user");
|
||||
$infotable = $db->DDLListTablesFull($db->database_name);
|
||||
print var_export($infotable, true)."\n";
|
||||
$this->assertGreaterThan(0, count($infotable));
|
||||
}
|
||||
if ($modlabel == 'Webhook') {
|
||||
print __METHOD__." test table llx_webhook_target exists after Webhook init\n";
|
||||
$infotable = $db->DDLInfoTable("llx_webhook_target");
|
||||
//$infotable = $db->DDLInfoTable("llx_webhook_target");
|
||||
$infotable = $db->DDLListTablesFull($db->database_name);
|
||||
print var_export($infotable, true)."\n";
|
||||
$this->assertGreaterThan(0, count($infotable));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user