All Unit tests | ||||
![]() | ||||
|
||||
![]() |
Coverage | ||||||||||||
Classes | Functions / Methods | Lines | ||||||||||
Total |
|
100.00% | 1 / 1 |
|
100.00% | 3 / 3 |
|
100.00% | 4 / 4 | |||
Midi\DefaultPostProcessor |
|
100.00% | 1 / 1 |
|
100.00% | 3 / 3 |
|
100.00% | 4 / 4 | |||
public function __construct() |
|
100.00% | 1 / 1 |
|
100.00% | 1 / 1 | ||||||
public function setParameter($key, $value) |
|
100.00% | 1 / 1 |
|
100.00% | 1 / 1 | ||||||
public function execute() |
|
100.00% | 1 / 1 |
|
100.00% | 1 / 1 |
1 : <?php 2 : 3 : /** 4 : * \Midi\Reporting\DefaultPostProcessor 5 : * 6 : * @package Midi 7 : * @subpackage Reporting 8 : * @copyright © 2009 Tommy Montgomery <http://phpmidiparser.com/> 9 : * @since 1.0 10 : */ 11 : 12 : namespace Midi\Reporting; 13 : 14 : /** 15 : * Empty post processor 16 : * 17 : * @package Midi 18 : * @subpackage Reporting 19 : * @since 1.0 20 : */ 21 1 : class DefaultPostProcessor implements PostProcessor { 22 : 23 : /** 24 : * Constructor 25 : * 26 : * @since 1.0 27 : */ 28 : public function __construct() { 29 : 30 3 : } 31 : 32 : /** 33 : * @since 1.0 34 : * 35 : * @param string $key 36 : * @param string $value 37 : */ 38 : public function setParameter($key, $value) { 39 : 40 1 : } 41 : 42 : /** 43 : * @since 1.0 44 : */ 45 : public function execute() { 46 : 47 1 : } 48 : 49 : } 50 : |
![]() |
Generated by PHPUnit 3.4.1 and Xdebug 2.0.5 using PHP 5.3.0 at Sun Oct 25 23:35:09 PDT 2009. |