Coverage Report - org.apache.maven.it.util.cli.shell.BourneShell
 
Classes in this File Line Coverage Branch Coverage Complexity
BourneShell
0%
0/4
N/A
1
 
 1  
 package org.apache.maven.it.util.cli.shell;
 2  
 
 3  
 /**
 4  
  * @author Jason van Zyl
 5  
  */
 6  
 public class BourneShell
 7  
     extends Shell
 8  
 {
 9  
     public BourneShell()
 10  0
     {
 11  0
         setShellCommand( "/bin/sh" );
 12  0
         setShellArgs( new String[]{"-c"} );
 13  0
     }
 14  
 }