(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestTokenGeneration(t *testing.T) { |
| 10 | mockTokenFunc := Tokens("a", "b", "c") |
| 11 | |
| 12 | for _, expected := range []string{"a", "b", "c", "a", "b", "c"} { |
| 13 | assert.Equal(t, expected, mockTokenFunc()) |
| 14 | } |
| 15 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…