| EMMA Coverage Report (generated Fri Feb 13 16:33:40 BRST 2009) |
|---|
| [all classes][br.org.agilcoop.cursos.testes.unidade] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| ServicoDeLogSingleton.java | 0% (0/1) | 0% (0/2) | 0% (0/11) | 0% (0/4) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class ServicoDeLogSingleton | 0% (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) |
| 1 | package br.org.agilcoop.cursos.testes.unidade; |
| 2 | |
| 3 | public 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 |