Coverage Report - br.org.agilcoop.cursos.testes.unidade.ServicoDeLogSingleton
 
Classes in this File Line Coverage Branch Coverage Complexity
ServicoDeLogSingleton
0%
0/4
0%
0/2
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  
 }