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

  Coverage
  Classes Functions / Methods Lines
Total
  
   
  
   
100.00%100.00%
100.00% 1 / 1
 


       1                 : <?php                                                                
       2                 :                                                                      
       3                 :     /**                                                              
       4                 :      * \Midi\Event                                                   
       5                 :      *                                                               
       6                 :      * @package   Midi                                               
       7                 :      * @copyright © 2009 Tommy Montgomery <http://phpmidiparser.com/>
       8                 :      * @since     1.0                                                
       9                 :      */                                                              
      10                 :                                                                      
      11                 :     namespace Midi;                                                  
      12                 :                                                                      
      13                 :     use \Midi\Chunk;                                                 
      14                 :                                                                      
      15                 :     /**                                                              
      16                 :      * Represents a MIDI event (meta, sysex or channel), but NOT     
      17                 :      * the delta time associated with each event                     
      18                 :      *                                                               
      19                 :      * @package Midi                                                 
      20                 :      * @since   1.0                                                  
      21                 :      */                                                              
      22               1 :     interface Event extends Chunk {                                  
      23                 :                                                                      
      24                 :         /**                                                          
      25                 :          * Gets the event type                                       
      26                 :          *                                                           
      27                 :          * @since 1.0                                                
      28                 :          * @see   EventType                                          
      29                 :          *                                                           
      30                 :          * @return  int                                              
      31                 :          */                                                          
      32                 :         public function getType();                                   
      33                 :                                                                      
      34                 :     }                                                                
      35                 :                                                                      

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.