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

COVERAGE SUMMARY FOR SOURCE FILE [SOCommandLineEvent.java]

nameclass, %method, %block, %line, %
SOCommandLineEvent.java0%   (0/1)0%   (0/2)0%   (0/14)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SOCommandLineEvent0%   (0/1)0%   (0/2)0%   (0/14)0%   (0/5)
SOCommandLineEvent (): void 0%   (0/1)0%   (0/3)0%   (0/1)
executa (Timer): void 0%   (0/1)0%   (0/11)0%   (0/4)

1package br.org.agilcoop.cursos.testes.unidade.timer.eventos;
2 
3import java.io.IOException;
4import br.org.agilcoop.cursos.testes.unidade.timer.Event;
5import br.org.agilcoop.cursos.testes.unidade.timer.Timer;
6 
7public abstract class SOCommandLineEvent implements Event {
8 
9        public void executa(final Timer timer) {
10                try {
11                        Runtime.getRuntime().exec(getCommand(timer));
12                } catch (IOException e) {
13                        e.printStackTrace();
14                }
15        }
16 
17        public abstract String getCommand(Timer timer);
18        
19}

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