(t *testing.T)
| 163 | } |
| 164 | |
| 165 | func TestContainsStr(t *testing.T) { |
| 166 | assert.False(t, containsStr([]string{"string-1", "string-2"}, "string-3")) |
| 167 | assert.True(t, containsStr([]string{"string-1", "string-2"}, "string-1")) |
| 168 | } |
| 169 | |
| 170 | func TestGenerateState(t *testing.T) { |
| 171 | state, err := generateState(0) |
nothing calls this directly
no test coverage detected