package xrand import "testing" func TestShuffle(t *testing.T) { a := []int{1, 2, 3} Shuffle(a) t.Log(a) }