EMMA Coverage Report (generated Fri Feb 13 16:33:40 BRST 2009)
[all classes][br.org.agilcoop.cursos.testes.unidade.pacotes]

COVERAGE SUMMARY FOR SOURCE FILE [Pacote.java]

nameclass, %method, %block, %line, %
Pacote.java0%   (0/1)0%   (0/2)0%   (0/10)0%   (0/2)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class Pacote0%   (0/1)0%   (0/2)0%   (0/10)0%   (0/2)
Pacote (): void 0%   (0/1)0%   (0/3)0%   (0/1)
toString (): String 0%   (0/1)0%   (0/7)0%   (0/1)

1package br.org.agilcoop.cursos.testes.unidade.pacotes;
2 
3import java.io.File;
4 
5public 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                return this.getClass().getSimpleName().replaceFirst("Pacote", "");
15        }
16        
17}

[all classes][br.org.agilcoop.cursos.testes.unidade.pacotes]
EMMA 2.0.5312 (C) Vladimir Roubtsov