2
0
forked from Wavyzz/dolibarr

More logs

This commit is contained in:
ldestailleur
2025-03-25 21:11:02 +01:00
parent 1a4b888f2e
commit 507e81d819
2 changed files with 7 additions and 0 deletions

View File

@@ -97,6 +97,12 @@ class ModulesTest extends CommonClassTest // TestCase //CommonClassTest
$this->assertLessThan($result, 0, $modlabel." ".$mod->error);
print __METHOD__." test remove/init for module ".$modlabel.", result=".$result."\n";
if ($modlabel == 'User') {
print __METHOD__." test table llx_user exists after Webhook init\n";
$infotable = $db->DDLInfoTable("llx_user");
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");