SecondFooDriver.php
Current file: C:\DATA\Viktor\Diplomka\XSLT-Benchmarking/Tools/Tests/Unit/DriverContainer/Foo/SecondFooDriver.php
Legend: executed not executed dead code

  Coverage
  Classes Functions / Methods Lines
Total
0.00% 0 / 1
0.00% 0 / 3 CRAP
0.00% 0 / 4
SecondFooDriver
0.00% 0 / 1
0.00% 0 / 3 12
0.00% 0 / 3
 __construct($param1, $param2)
0.00% 0 / 1 2
0.00% 0 / 1
 methodOne()
0.00% 0 / 1 2
0.00% 0 / 1
 methodTwo($arg1, $arg2)
0.00% 0 / 1 2
0.00% 0 / 1



       1                 : <?php                                                    
       2                 :                                                          
       3                 : /**                                                      
       4                 :  * XSLT Benchmarking                                     
       5                 :  * @link https://github.com/masicek/XSLT-Benchmarking    
       6                 :  * @author Viktor Mašíček <viktor@masicek.net>        
       7                 :  * @license "New" BSD License                            
       8                 :  */                                                      
       9                 :                                                          
      10                 : namespace Tests\XSLTBenchmarking\DriversContainer;       
      11                 :                                                          
      12               0 : require_once __DIR__ . '/IFooDriver.php';                
      13                 :                                                          
      14                 : /**                                                      
      15                 :  * SecondFooDriver                                       
      16                 :  *                                                       
      17                 :  * @author Viktor Mašíček <viktor@masicek.net>        
      18                 :  */                                                      
      19                 : class SecondFooDriver implements IFooDriver              
      20                 : {                                                        
      21                 :                                                          
      22                 :                                                          
      23                 :     public function __construct($param1, $param2)        
      24                 :     {                                                    
      25                 :         // do not use of params                          
      26               0 :     }                                                    
      27                 :                                                          
      28                 :                                                          
      29                 :     public function methodOne()                          
      30                 :     {                                                    
      31               0 :         return 'Second::method1';                        
      32                 :     }                                                    
      33                 :                                                          
      34                 :                                                          
      35                 :     public function methodTwo($arg1, $arg2)              
      36                 :     {                                                    
      37               0 :         return 'Second::method2: ' . $arg1 . ' ' . $arg2;
      38                 :     }                                                    
      39                 :                                                          
      40                 :                                                          
      41                 : }                                                        


Generated by PHP_CodeCoverage @package_version@ using PHP 5.3.6 and PHPUnit @package_version@ at Tue Jun 26 15:06:55 CEST 2012.