| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| CommonConstants |
|
| 1.0;1 |
| 1 | package yarfraw.utils; |
|
| 2 | ||
| 3 | ||
| 4 | public class CommonConstants{ |
|
| 5 | 0 | private CommonConstants(){} |
| 6 | public static final int MIN_PER_DAY = 60*24; |
|
| 7 | public static final int MIN_PER_WEEK = MIN_PER_DAY*7; |
|
| 8 | public static final int MIN_PER_MONTH = MIN_PER_DAY*30; |
|
| 9 | public static final int MIN_PER_YEAR = MIN_PER_DAY*365; |
|
| 10 | ||
| 11 | } |