Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Commit

Permalink
Improve form collection test
Browse files Browse the repository at this point in the history
  • Loading branch information
neilime committed Jan 15, 2014
1 parent 4b42513 commit 46fcdaa
Show file tree
Hide file tree
Showing 37 changed files with 176 additions and 144 deletions.
21 changes: 14 additions & 7 deletions src/TwbBundle/Form/View/Helper/TwbBundleFormCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,22 @@ public function render(\Zend\Form\ElementInterface $oElement){
$oElementOrFieldset->setOptions($aOptions);
}

if($oElementOrFieldset instanceof \Zend\Form\FieldsetInterface)$sMarkup .= $oFieldsetHelper($oElementOrFieldset);
elseif($oElementOrFieldset instanceof \Zend\Form\ElementInterface)$sMarkup .= $oElementHelper($oElementOrFieldset);
}
if($oElement instanceof \Zend\Form\Element\Collection && $oElement->shouldCreateTemplate())$sMarkup .= $this->renderTemplate($oElement);
}
if ($oElementOrFieldset instanceof \Zend\Form\FieldsetInterface) {
$sMarkup .= $oFieldsetHelper($oElementOrFieldset);
} elseif ($oElementOrFieldset instanceof \Zend\Form\ElementInterface) {
$sMarkup .= $oElementHelper($oElementOrFieldset);
}
}
if ($oElement instanceof \Zend\Form\Element\Collection && $oElement->shouldCreateTemplate()) {
$sMarkup .= $this->renderTemplate($oElement);
}
}

if($this->shouldWrap && ($sLabel = $oElement->getLabel())){
if(null !== ($oTranslator = $this->getTranslator()))$sLabel = $oTranslator->translate($sLabel, $this->getTranslatorTextDomain());
$sMarkup = sprintf(
if (null !== ($oTranslator = $this->getTranslator())) {
$sLabel = $oTranslator->translate($sLabel, $this->getTranslatorTextDomain());
}
$sMarkup = sprintf(
self::$legendFormat,
$this->createAttributesString($oElement->getLabelAttributes()?:array()),
$this->getEscapeHtmlHelper()->__invoke($sLabel)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,32 @@ public function setUp(){
$this->formCollectionHelper = $oViewHelperPluginManager->get('formCollection')->setView($oRenderer->setHelperPluginManager($oViewHelperPluginManager));
}

public function testRenderWithShoulddWrap(){
public function testRenderWithShouldWrap(){
$this->formCollectionHelper->setShouldWrap(true);
$this->assertEquals(
'<fieldset ><legend >test-element</legend></fieldset>',
$this->formCollectionHelper->render(new \Zend\Form\Element(null,array('label' => 'test-element')))
);
}

public function testRenderWithShouldCreateTemplate(){
$oElement = new \Zend\Form\Element('test');
$oForm = new \Zend\Form\Form();
$oForm->add(array(
'name' => 'test-collection',
'type' => 'Zend\Form\Element\Collection',
'options' => array(
'should_create_template' => true,
'target_element' => $oElement
)
));

$this->assertEquals(
'<fieldset ><div class="form-group "><input name="0" class="form-control" type="text" value=""></div>'.PHP_EOL.'<span data-template="DATA_TEMPLATE"></span></fieldset>',
preg_replace('/<span data-template="[^"]+"><\/span>/', '<span data-template="DATA_TEMPLATE"></span>', $this->formCollectionHelper->render($oForm->get('test-collection')))
);
}

public function testRenderInlineFieldsetWithAlreadyDefinedClass(){
$oFieldset = new \Zend\Form\Fieldset('inline-fieldset',array('twb-layout' => \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_INLINE));
$oFieldset->setAttribute('class', 'test-class');
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/Module.php.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h4>Legend</h4>
<span class="warning"><strong>Dead Code</strong></span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/index.dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h2>Least Tested Methods</h2>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
6 changes: 3 additions & 3 deletions tests/_report/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">585&nbsp;/&nbsp;585</div></td>
<td class="success small"><div align="right">592&nbsp;/&nbsp;592</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand All @@ -69,7 +69,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">581&nbsp;/&nbsp;581</div></td>
<td class="success small"><div align="right">588&nbsp;/&nbsp;588</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand Down Expand Up @@ -117,7 +117,7 @@ <h4>Legend</h4>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/src.dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h2>Least Tested Methods</h2>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
6 changes: 3 additions & 3 deletions tests/_report/src.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">581&nbsp;/&nbsp;581</div></td>
<td class="success small"><div align="right">588&nbsp;/&nbsp;588</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand All @@ -70,7 +70,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">581&nbsp;/&nbsp;581</div></td>
<td class="success small"><div align="right">588&nbsp;/&nbsp;588</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand All @@ -96,7 +96,7 @@ <h4>Legend</h4>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/src_TwbBundle.dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h2>Least Tested Methods</h2>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
6 changes: 3 additions & 3 deletions tests/_report/src_TwbBundle.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">581&nbsp;/&nbsp;581</div></td>
<td class="success small"><div align="right">588&nbsp;/&nbsp;588</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand All @@ -71,7 +71,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">414&nbsp;/&nbsp;414</div></td>
<td class="success small"><div align="right">421&nbsp;/&nbsp;421</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand Down Expand Up @@ -119,7 +119,7 @@ <h4>Legend</h4>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/src_TwbBundle_Form.dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h2>Least Tested Methods</h2>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
6 changes: 3 additions & 3 deletions tests/_report/src_TwbBundle_Form.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">414&nbsp;/&nbsp;414</div></td>
<td class="success small"><div align="right">421&nbsp;/&nbsp;421</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand Down Expand Up @@ -88,7 +88,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">414&nbsp;/&nbsp;414</div></td>
<td class="success small"><div align="right">421&nbsp;/&nbsp;421</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand All @@ -114,7 +114,7 @@ <h4>Legend</h4>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/src_TwbBundle_Form_Element.dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2>Least Tested Methods</h2>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/src_TwbBundle_Form_Element.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h4>Legend</h4>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ <h4>Legend</h4>
<span class="warning"><strong>Dead Code</strong></span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/_report/src_TwbBundle_Form_View.dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2>Least Tested Methods</h2>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
6 changes: 3 additions & 3 deletions tests/_report/src_TwbBundle_Form_View.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">414&nbsp;/&nbsp;414</div></td>
<td class="success small"><div align="right">421&nbsp;/&nbsp;421</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand All @@ -73,7 +73,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">414&nbsp;/&nbsp;414</div></td>
<td class="success small"><div align="right">421&nbsp;/&nbsp;421</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand All @@ -99,7 +99,7 @@ <h4>Legend</h4>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h2>Least Tested Methods</h2>
</div>
<footer>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
6 changes: 3 additions & 3 deletions tests/_report/src_TwbBundle_Form_View_Helper.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">414&nbsp;/&nbsp;414</div></td>
<td class="success small"><div align="right">421&nbsp;/&nbsp;421</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand Down Expand Up @@ -140,7 +140,7 @@
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">39&nbsp;/&nbsp;39</div></td>
<td class="success small"><div align="right">46&nbsp;/&nbsp;46</div></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
Expand Down Expand Up @@ -292,7 +292,7 @@ <h4>Legend</h4>
<span class="success"><strong>High</strong>: 70% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Sat Jan 11 10:55:23 CET 2014.</small>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.5.5</a> and <a href="http://phpunit.de/">PHPUnit 3.7.28</a> at Wed Jan 15 19:53:26 CET 2014.</small>
</p>
</footer>
</div>
Expand Down
Loading

0 comments on commit 46fcdaa

Please sign in to comment.