(t *testing.T, expected, actual []string)
| 144 | } |
| 145 | |
| 146 | func AssertOptions(t *testing.T, expected, actual []string) { |
| 147 | assert.Equal(t, expected, actual) |
| 148 | } |
| 149 | |
| 150 | func IndexFor(options []string, answer string) (int, error) { |
| 151 | for ix, a := range options { |