Coverage Report - br.org.agilcoop.cursos.testes.unidade.pacotes.Pacote
 
Classes in this File Line Coverage Branch Coverage Complexity
Pacote
0%
0/2
N/A
0
 
 1  
 package br.org.agilcoop.cursos.testes.unidade.pacotes;
 2  
 
 3  
 import java.io.File;
 4  
 
 5  0
 public abstract class Pacote {
 6  
         public File arquivo;
 7  
         
 8  
         public abstract void desempacotar(File diretorio) throws PacoteRuntimeException;
 9  
         
 10  
         public abstract void listar() throws PacoteRuntimeException;
 11  
 
 12  
         @Override
 13  
         public String toString() {
 14  0
                 return this.getClass().getSimpleName().replaceFirst("Pacote", "");
 15  
         }
 16  
         
 17  
 }