First take on unit tests.

Creates an event and compares the the input data with the database.

Ticket #28
This commit is contained in:
Tim Schumacher 2016-06-26 13:48:47 +02:00
parent fc138fb910
commit e44e7b6423
10 changed files with 1491 additions and 82 deletions

View file

@ -74,7 +74,9 @@ $minorProblems = $symfonyRequirements->getFailedRecommendations();
<p>Major problems have been detected and <strong>must</strong> be fixed before continuing:</p>
<ol>
<?php foreach ($majorProblems as $problem): ?>
<li><?php echo $problem->getHelpHtml() ?></li>
<li><?php echo $problem->getTestMessage() ?>
<p class="help"><em><?php echo $problem->getHelpHtml() ?></em></p>
</li>
<?php endforeach; ?>
</ol>
<?php endif; ?>
@ -87,7 +89,9 @@ $minorProblems = $symfonyRequirements->getFailedRecommendations();
</p>
<ol>
<?php foreach ($minorProblems as $problem): ?>
<li><?php echo $problem->getHelpHtml() ?></li>
<li><?php echo $problem->getTestMessage() ?>
<p class="help"><em><?php echo $problem->getHelpHtml() ?></em></p>
</li>
<?php endforeach; ?>
</ol>
<?php endif; ?>