| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DateHelper |
|
| 1.0;1 |
| 1 | package br.org.agilcoop.cursos.testes.unidade; | |
| 2 | ||
| 3 | import java.text.SimpleDateFormat; | |
| 4 | import java.util.Date; | |
| 5 | ||
| 6 | 0 | public class DateHelper { |
| 7 | ||
| 8 | public static String getDataFormatadaParaInscricao() { | |
| 9 | 0 | Date data = new Date(); |
| 10 | 0 | return new SimpleDateFormat("dd/MM/yyyy").format(data); |
| 11 | } | |
| 12 | ||
| 13 | } |