Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Created July 8, 2019 20:28
Show Gist options
  • Save mottet-dev/9ca99319f1090f73dedb157c4af41d34 to your computer and use it in GitHub Desktop.
Save mottet-dev/9ca99319f1090f73dedb157c4af41d34 to your computer and use it in GitHub Desktop.
Go Test
package helpers
import "testing"
func TestDoesSliceIncludesInt(t *testing.T) {
inputValue := 3
inputSlice := []int{1, 2, 3}
expectedOutput := true
got := DoesSliceIncludesInt(inputValue, inputSlice)
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment