| 53 | } |
| 54 | |
| 55 | public class EduInstitute { |
| 56 | public static void main(String[] args) { |
| 57 | // TODO Auto-generated method stub |
| 58 | Student s1 = new Student(); |
| 59 | s1.getDetails(); |
| 60 | s1.display(); |
| 61 | System.out.println(); |
| 62 | Teacher t1 = new Teacher(); |
| 63 | t1.getDetails(); |
| 64 | t1.display(); |
| 65 | } |
| 66 | } |
nothing calls this directly
no outgoing calls
no test coverage detected