| 16 | ) |
| 17 | |
| 18 | type toolbarTestState struct { |
| 19 | turns int |
| 20 | input int |
| 21 | output int |
| 22 | yolo bool |
| 23 | } |
| 24 | |
| 25 | func (s toolbarTestState) TurnCountValue() int { return s.turns } |
| 26 | func (s toolbarTestState) TokenTotals() (int, int) { return s.input, s.output } |
nothing calls this directly
no outgoing calls
no test coverage detected