mirror of
https://github.com/friendica/friendica
synced 2024-11-18 08:23:53 +00:00
Add output for installerTest
This commit is contained in:
parent
9cb48b0e12
commit
e428bccefb
1 changed files with 4 additions and 2 deletions
|
@ -73,13 +73,15 @@ class InstallerTest extends MockedTest
|
|||
|
||||
private function assertCheckExist($position, $title, $help, $status, $required, $assertionArray)
|
||||
{
|
||||
$this->assertArraySubset([$position => [
|
||||
$subSet = [$position => [
|
||||
'title' => $title,
|
||||
'status' => $status,
|
||||
'required' => $required,
|
||||
'error_msg' => null,
|
||||
'help' => $help]
|
||||
], $assertionArray);
|
||||
];
|
||||
|
||||
$this->assertArraySubset($subSet, $assertionArray, false, "expected subset: " . PHP_EOL . print_r($subSet, true) . PHP_EOL . "current subset: " . print_r($assertionArray, true));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue