| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ArticleMaven |
|
| 1.0;1 |
| 1 | package com.developpez; | |
| 2 | ||
| 3 | /** | |
| 4 | * Un article Maven | |
| 5 | * | |
| 6 | * @author Baptiste Wicht | |
| 7 | */ | |
| 8 | 0 | public class ArticleMaven { |
| 9 | /** | |
| 10 | * M�thode main. | |
| 11 | * | |
| 12 | * @param args Ignor�s. | |
| 13 | */ | |
| 14 | public static void main(String[] args){ | |
| 15 | 0 | System.out.println(getDescription()); |
| 16 | 0 | } |
| 17 | ||
| 18 | /** | |
| 19 | * Retourne la description du projet. | |
| 20 | * | |
| 21 | * @return La description du projet. | |
| 22 | */ | |
| 23 | public static String getDescription(){ | |
| 24 | 1 | return "Je suis un article de Developpez"; |
| 25 | } | |
| 26 | } |