()
| 8 | const [count, setCount] = useState(counterInstance.getCount()) |
| 9 | |
| 10 | const increment = () => { |
| 11 | counterInstance.increment() |
| 12 | setCount(counterInstance.getCount()) |
| 13 | } |
| 14 | |
| 15 | const decrement = () => { |
| 16 | counterInstance.decrement() |
nothing calls this directly
no outgoing calls
no test coverage detected