| 40 | } |
| 41 | |
| 42 | class Box { |
| 43 | |
| 44 | private Object item; |
| 45 | |
| 46 | void set(Object item) { |
| 47 | this.item = item; |
| 48 | } |
| 49 | |
| 50 | Object get() { |
| 51 | return item; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | class Collection { |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected