(int price, String bookName)
| 5 | private String bookName; |
| 6 | |
| 7 | Book(int price, String bookName){ |
| 8 | this.price = price; |
| 9 | this.bookName = bookName; |
| 10 | |
| 11 | } |
| 12 | |
| 13 | public int getPrice(){ |
| 14 | return price; |
nothing calls this directly
no outgoing calls
no test coverage detected