(int id, String name, int age, String gender)
| 7 | private String gender; |
| 8 | |
| 9 | public Patient(int id, String name, int age, String gender) { |
| 10 | this.id = id; |
| 11 | this.name = name; |
| 12 | this.age = age; |
| 13 | this.gender = gender; |
| 14 | } |
| 15 | |
| 16 | public int getId() { |
| 17 | return id; |
nothing calls this directly
no outgoing calls
no test coverage detected