//print __METHOD__." Result for checking we don't have back quote = ".$result."\n";
$this->assertTrue($result===false,'Found back quote into '.$file.'. Bad.');
$result=strpos($filecontent,'"');
//print __METHOD__." Result for checking we don't have double quote = ".$result."\n";
$this->assertTrue($result===false,'Found double quote that is not [" neither {" (used for json content) neither (" (used for content with string like isModEnabled("")) into '.$file.'. Bad.');
$result=strpos($filecontent,'int(');
//print __METHOD__." Result for checking we don't have 'int(' instead of 'integer' = ".$result."\n";
$this->assertTrue($result===false,'Found int(x) or tinyint(x) instead of integer or tinyint into '.$file.'. Bad.');
$result=strpos($filecontent,'ON DELETE CASCADE');
//print __METHOD__." Result for checking we don't have 'ON DELETE CASCADE' = ".$result."\n";
$this->assertTrue($result===false,'Found ON DELETE CASCADE into '.$file.'. Bad.');
$result=strpos($filecontent,'NUMERIC(');
//print __METHOD__." Result for checking we don't have 'NUMERIC(' = ".$result."\n";
$this->assertTrue($result===false,'Found NUMERIC( into '.$file.'. Bad.');
$result=strpos($filecontent,'NUMERIC(');
//print __METHOD__." Result for checking we don't have 'curdate(' = ".$result."\n";
$this->assertTrue($result===false,'Found curdate( into '.$file.'. Bad. Current date must be generated with PHP.');
$result=strpos($filecontent,'integer(');
//print __METHOD__." Result for checking we don't have 'integer(' = ".$result."\n";
$this->assertTrue($result===false,'Found value in parenthesis after the integer. It must be integer not integer(x) into '.$file.'. Bad.');
$result=strpos($filecontent,'timestamp,');
//print __METHOD__." Result for checking we don't have 'NUMERIC(' = ".$result."\n";
$this->assertTrue($result===false,'Found type timestamp without option DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP after into '.$file.'. Bad.');
print__METHOD__." Result for checking we don't have a crypted value that could not be decrypted on a restored instance with other key = ".$result."\n";
$this->assertTrue($result===false,'Found a "dolcrypt:" into file '.$file);
$result=strpos($filecontent,'@gmail.com');
print__METHOD__." Result for checking we don't have personal data = ".$result."\n";
$this->assertTrue($result===false,'Found a bad key @gmail into file '.$file);
$result=strpos($filecontent,'eldy@');
print__METHOD__." Result for checking we don't have personal data = ".$result."\n";
$this->assertTrue($result===false,'Found a bad key eldy@ into file '.$file);
$result=strpos($filecontent,'INSERT INTO `llx_oauth_token`');
print__METHOD__." Result for checking we don't have data into llx_oauth_token = ".$result."\n";
$this->assertTrue($result===false,'Found a non expected insert into file '.$file);