| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ShellUtils |
|
| 1.0;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 | } |