All Unit tests
Current file: C:\code\midiparser\src\Midi\Version.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% 1 / 1
100.00%100.00%
100.00% 2 / 2
 
Midi\Version
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 2 / 2
 private function __construct()
100.00%100.00%
100.00% 1 / 1
100.00%100.00%
100.00% 1 / 1


       1                 : <?php                                                                 
       2                 :                                                                       
       3                 :     /**                                                               
       4                 :      * \Midi\Version                                                  
       5                 :      *                                                                
       6                 :      * @package   Midi                                                
       7                 :      * @since     1.0                                                 
       8                 :      * @copyright © 2009 Tommy Montgomery <http://phpmidiparser.com/>
       9                 :      */                                                               
      10                 :                                                                       
      11                 :     namespace Midi;                                                   
      12                 :                                                                       
      13                 :     /**                                                               
      14                 :      * Provides static properties such as version and author          
      15                 :      *                                                                
      16                 :      * @package Midi                                                  
      17                 :      * @since   1.0                                                   
      18                 :      */                                                               
      19               1 :     final class Version {                                             
      20                 :                                                                       
      21                 :         //@codeCoverageIgnoreStart                                    
      22                 :         /**                                                           
      23                 :          * @ignore                                                    
      24                 :          */                                                           
      25               0 :         private function __construct() {}                             
      26                 :         //@codeCoverageIgnoreEnd                                      
      27                 :                                                                       
      28                 :         /**                                                           
      29                 :          * The PHP MIDI Parser library version                        
      30                 :          *                                                            
      31                 :          * @var string                                                
      32                 :          */                                                           
      33                 :         const VERSION    = '1.0';                                     
      34                 :                                                                       
      35                 :         /**                                                           
      36                 :          * The PHP MIDI Parser library author                         
      37                 :          *                                                            
      38                 :          * @var string                                                
      39                 :          */                                                           
      40                 :         const AUTHOR     = 'Tommy Montgomery';                        
      41                 :                                                                       
      42                 :         /**                                                           
      43                 :          * The PHP MIDI Parser library full product name              
      44                 :          *                                                            
      45                 :          * @var string                                                
      46                 :          */                                                           
      47                 :         const NAME       = 'PHP MIDI Library';                        
      48                 :                                                                       
      49                 :         /**                                                           
      50                 :          * The build date (Y-m-d H:i:s P)                             
      51                 :          *                                                            
      52                 :          * @var string                                                
      53                 :          */                                                           
      54                 :         const BUILD_DATE = '2009-10-25 22:43:31 -07:00';              
      55                 :                                                                       
      56                 :     }                                                                 
      57                 :                                                                       

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.