All Unit tests
Current file: C:\code\midiparser\src\Midi\Event\ChannelAftertouchEvent.php
Legend: executed not executed dead code

  Coverage
  Classes Functions / Methods Lines
Total
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 3 / 3
100.00%100.00%
100.00% 4 / 4
 
Midi\ChannelAftertouchEvent
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 3 / 3
100.00%100.00%
100.00% 4 / 4
 public function getParamDescription()
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 1 / 1
 public function getType()
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 1 / 1
 public function getLength()
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 1 / 1


       1                 : <?php                                                                 
       2                 :                                                                       
       3                 :     /**                                                               
       4                 :      * \Midi\Event\ChannelAftertouchEvent                             
       5                 :      *                                                                
       6                 :      * @package    Midi                                               
       7                 :      * @subpackage Event                                              
       8                 :      * @copyright  © 2009 Tommy Montgomery <http://phpmidiparser.com/>
       9                 :      * @since      1.0                                                
      10                 :      */                                                               
      11                 :                                                                       
      12                 :     namespace Midi\Event;                                             
      13                 :                                                                       
      14                 :     /**                                                               
      15                 :      * Represents a channel aftertouch channel event                  
      16                 :      *                                                                
      17                 :      * @package    Midi                                               
      18                 :      * @subpackage Event                                              
      19                 :      * @since      1.0                                                
      20                 :      * @todo       Document what this event actually does             
      21                 :      */                                                               
      22               1 :     class ChannelAftertouchEvent extends ChannelEvent {               
      23                 :                                                                       
      24                 :         /**                                                           
      25                 :          * @since 1.0                                                 
      26                 :          *                                                            
      27                 :          * @return string                                             
      28                 :          */                                                           
      29                 :         public function getParamDescription() {                       
      30               1 :             return 'aftertouch pressure [' . $this->param1 . ']';     
      31                 :         }                                                             
      32                 :                                                                       
      33                 :         /**                                                           
      34                 :          * @since 1.0                                                 
      35                 :          * @uses  EventType::CHANNEL_AFTERTOUCH                       
      36                 :          *                                                            
      37                 :          * @return int                                                
      38                 :          */                                                           
      39                 :         public function getType() {                                   
      40               1 :             return EventType::CHANNEL_AFTERTOUCH;                     
      41                 :         }                                                             
      42                 :                                                                       
      43                 :         /**                                                           
      44                 :          * @since 1.0                                                 
      45                 :          *                                                            
      46                 :          * @return int                                                
      47                 :          */                                                           
      48                 :         public function getLength() {                                 
      49               1 :             return 2;                                                 
      50                 :         }                                                             
      51                 :                                                                       
      52                 :     }                                                                 
      53                 :                                                                       

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.