(slf, trainNo)
| 3 | class Train: |
| 4 | |
| 5 | def __init__(slf, trainNo): |
| 6 | slf.trainNo = trainNo |
| 7 | |
| 8 | def book(harry, fro, to): |
| 9 | print(f"Ticket is booked in train no: {harry.trainNo} from {fro} to {to}") |
nothing calls this directly
no outgoing calls
no test coverage detected