()
| 46 | } |
| 47 | |
| 48 | func (m *mockTool) ExecutionCount() int { |
| 49 | m.mu.Lock() |
| 50 | defer m.mu.Unlock() |
| 51 | return m.execCount |
| 52 | } |
| 53 | |
| 54 | func newMockTool(name string, result any, err error) *mockTool { |
| 55 | return &mockTool{ |
no outgoing calls
no test coverage detected