| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ServicoDeLogSingleton |
|
| 1.5;1.5 |
| 1 | package br.org.agilcoop.cursos.testes.unidade; | |
| 2 | ||
| 3 | public class ServicoDeLogSingleton { | |
| 4 | public static ServicoDeLogSingleton instancia; | |
| 5 | ||
| 6 | 0 | private ServicoDeLogSingleton() { |
| 7 | 0 | } |
| 8 | ||
| 9 | public static ServicoDeLogSingleton getInstance() { | |
| 10 | 0 | if(instancia == null) instancia = new ServicoDeLogSingleton(); |
| 11 | 0 | return instancia; |
| 12 | } | |
| 13 | } |