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

COVERAGE SUMMARY FOR SOURCE FILE [ServicoDeLogSingleton.java]

nameclass, %method, %block, %line, %
ServicoDeLogSingleton.java0%   (0/1)0%   (0/2)0%   (0/11)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ServicoDeLogSingleton0%   (0/1)0%   (0/2)0%   (0/11)0%   (0/4)
ServicoDeLogSingleton (): void 0%   (0/1)0%   (0/3)0%   (0/2)
getInstance (): ServicoDeLogSingleton 0%   (0/1)0%   (0/8)0%   (0/2)

1package br.org.agilcoop.cursos.testes.unidade;
2 
3public class ServicoDeLogSingleton {
4        public static ServicoDeLogSingleton instancia;
5        
6        private ServicoDeLogSingleton() {
7        }
8        
9        public static ServicoDeLogSingleton getInstance() {
10                if(instancia == null) instancia = new ServicoDeLogSingleton();
11                return instancia;
12        }
13}

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