()
| 55 | } |
| 56 | |
| 57 | func (t *Team) AgentNames() []string { |
| 58 | var names []string |
| 59 | for i := range t.agents { |
| 60 | names = append(names, t.agents[i].Name()) |
| 61 | } |
| 62 | return names |
| 63 | } |
| 64 | |
| 65 | // AgentInfo contains information about an agent |
| 66 | type AgentInfo struct { |
no test coverage detected