Coverage Report - br.org.agilcoop.cursos.testes.unidade.ShellUtils
 
Classes in this File Line Coverage Branch Coverage Complexity
ShellUtils
0%
0/3
N/A
1
 
 1  
 package br.org.agilcoop.cursos.testes.unidade;
 2  
 
 3  
 import java.io.IOException;
 4  
 
 5  0
 public class ShellUtils {
 6  
         
 7  
         public static int executaUmComando(String comando) throws IOException {
 8  0
                 Process exec = Runtime.getRuntime().exec(comando);
 9  0
                 return exec.exitValue();
 10  
         }
 11  
         
 12  
 }