(int lunarYear, int lunarMonth, int lunarDay)
| 12 | private int lunarDay; |
| 13 | |
| 14 | public Lunar(int lunarYear, int lunarMonth, int lunarDay) { |
| 15 | this.lunarDay = lunarDay; |
| 16 | this.lunarMonth = lunarMonth; |
| 17 | this.lunarYear = lunarYear; |
| 18 | } |
| 19 | |
| 20 | public boolean getIsLeap() { |
| 21 | return isLeap; |
nothing calls this directly
no outgoing calls
no test coverage detected